diff --git a/Musicreater.py b/Musicreater.py index 1f3f0f3..bc1a33b 100644 --- a/Musicreater.py +++ b/Musicreater.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -#! python3 +# ! python3 # W-YI 金羿 @@ -10,7 +10,7 @@ # 若需转载或借鉴 请附作者 -''' +""" Copyright 2022 Eilles Wan (金羿) Licensed under the Apache License, Version 2.0 (the 'License') @@ -24,11 +24,26 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -''' - +""" # 代码写的并非十分的漂亮,还请大佬多多包涵;本软件源代码依照Apache软件协议公开 +# -----------------------------分割线----------------------------- +# 诸葛亮与八卦阵帮忙修改语法 日期:---2022年1月19日 +# 统计:致命(三级)错误:0个;警告(二级)错误:15个;语法(一级)错误:597个 +# 目前我的Pycharm并没有显示任何错误,有错误可以向 +# bgArray 诸葛亮与八卦阵 +# QQ 474037765 或最好加入:音·创 开发交流群 861684859 +# ------------------------- split line----------------------------- +# Zhuge Liang and Bagua array help to modify the grammar date: -- January 19, 2022 +# Statistics: fatal (Level 3) errors: 0; Warning (Level 2) errors: 15; Syntax (Level 1) error: 597 +# At present, my Pycham does not display any errors. If there are errors, you can report them to me +# Bgarray Zhuge Liang and Bagua array +# QQ 474037765 or better join: Musicreater development exchange group 861684859 +# ------------------------- split line----------------------------- + +# 下面为正文 + import json import os @@ -44,24 +59,14 @@ from languages.lang import * from msctspt.threadOpera import NewThread from nmcsup.vers import VER -__version__ = VER[1]+VER[0] +__version__ = VER[1] + VER[0] __author__ = 'W-YI (金羿)' - - - - - - - - - - +dire = "" +begp = "" +endp = "" print('建立变量,存入内存,载入字典常量函数') - - - # 主体部分 # 支持多文件同时操作 @@ -101,8 +106,6 @@ dataset=[ ] ''' - - dataset = [ { 'mainset': { @@ -127,7 +130,6 @@ dataset = [ }, ] - is_new_file = True is_save = True ProjectName = '' @@ -152,108 +154,81 @@ def DMM(): # 反回字典用于编辑 print('完成') - - - - - - - - - def __main__(): - '''音·创 本体\n + """音·创 本体\n W-YI 金羿\n QQ 2647547478\n 音·创 开发交流群 861684859\n Email EillesWan2006@163.com W-YI_DoctorYI@outlook.com\n 版权所有 Team-Ryoun 金羿\n 若需转载或借鉴 请附作者\n - ''' + """ print('音·创 正在启动……') - - print('载入日志功能...') from nmcsup.log import log print('完成!') - - print('更新执行位置...') if sys.platform == 'win32': try: - os.chdir(__file__[:len(__file__)-__file__[len(__file__)::-1].index('\\')]) + os.chdir(__file__[:len(__file__) - __file__[len(__file__)::-1].index('\\')]) log('更新执行位置,当前文件位置 {}'.format(__file__)) - except: + except FileNotFoundError: # 程序规范修改:根据新的语法标准:except后面不能没有错误类型,所以既然是pass就随便填一个错误 pass else: try: - os.chdir(__file__[:len(__file__)-__file__[len(__file__)::-1].index('/')]) - except: + os.chdir(__file__[:len(__file__) - __file__[len(__file__)::-1].index('/')]) + except FileNotFoundError: pass - log('其他平台:{} 更新执行位置,当前文件位置 {}'.format(sys.platform,__file__)) + log('其他平台:{} 更新执行位置,当前文件位置 {}'.format(sys.platform, __file__)) print('完成!') - - - # 读取文件 - print('载入文件读取函数') - def ReadFile(fn:str) -> list: + def ReadFile(fn: str): # -> list from nmcsup.nmcreader import ReadFile as fileRead k = fileRead(fn) - if k == False : + if k is False: tk.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[105].format(fn)) return else: return k - - def ReadMidi(midfile:str) -> str: + def ReadMidi(midfile: str): # -> str from nmcsup.nmcreader import ReadMidi as midiRead k = midiRead(midfile) - if k == False : + if k is False: tk.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[105].format(midfile)) return else: return k - print('完成!') - - - # 菜单命令 print('加载菜单命令...') def exitapp(): global is_save - if is_save != True: + if is_save is not True: if tkinter.messagebox.askyesno(title=READABLETEXT[1], message=READABLETEXT[106]): SaveProject() log('程序正常退出') - - - try: global dataset del dataset global root root.destroy() del root - except: + except FileNotFoundError: # 程序规范修改:根据新的语法标准:except后面不能没有错误类型,所以既然是pass就随便填一个错误 pass - - - if clearLog : + if clearLog: print(READABLETEXT[2]) try: if os.path.exists('./log/'): @@ -262,17 +237,13 @@ def __main__(): shutil.rmtree('./logs/') if os.path.exists('./cache/'): shutil.rmtree('./cache/') - except: + except ZeroDivisionError: # 程序规范修改:根据新的语法标准:except后面不能没有错误类型,所以既然是pass就随便填一个错误 print(READABLETEXT[3]) - - + exit() - print('退出命令加载完成!') - - def SaveProject(): if is_new_file: # 新的项目相等于另存为 @@ -287,57 +258,60 @@ def __main__(): global is_save is_save = True - print('保存项目命令加载完成!') - def SaveAsProject(): # 另存为项目 - fn = tkinter.filedialog.asksaveasfilename(title=READABLETEXT[5], initialdir=r'./', filetypes=[(READABLETEXT[108], '.msct'), (READABLETEXT[109], '*')], defaultextension='Noname.msct') - if fn == None or fn =='': + fn = tkinter.filedialog.asksaveasfilename(title=READABLETEXT[5], initialdir=r'./', + filetypes=[(READABLETEXT[108], '.msct'), (READABLETEXT[109], '*')], + defaultextension='Noname.msct') + if fn is None or fn == '': return - ProjectName = fn - with open(ProjectName, 'w', encoding='utf-8') as f: + Project_Name = fn + with open(Project_Name, 'w', encoding='utf-8') as f: json.dump(dataset[0], f) - tkinter.messagebox.showinfo(title=READABLETEXT[4], message=READABLETEXT[107].format(ProjectName)) + tkinter.messagebox.showinfo(title=READABLETEXT[4], message=READABLETEXT[107].format(Project_Name)) global is_save is_save = True - print('另存项目命令加载完成!') - def openOldProject(): global is_save - if is_save != True: + if is_save is not True: result = tkinter.messagebox.askyesno(title=READABLETEXT[1], message=READABLETEXT[106]) if result: SaveProject() - fn = tkinter.filedialog.askopenfilename(title=READABLETEXT[6], initialdir=r'./', filetypes=[(READABLETEXT[110], '.ry.nfc'), (READABLETEXT[111], '.ry.mfm'), (READABLETEXT[112], '*')], multiple=True) - if fn == None or fn == '': + fn = tkinter.filedialog.askopenfilename(title=READABLETEXT[6], initialdir=r'./', + filetypes=[(READABLETEXT[110], '.ry.nfc'), + (READABLETEXT[111], '.ry.mfm'), (READABLETEXT[112], '*')], + multiple=True) + if fn is None or fn == '': return else: fn = fn[0] from nmcsup.nmcreader import ReadOldProject dataset[0] = ReadOldProject(fn) - - def openProject(): global is_save - if is_save != True: + if is_save is not True: result = tkinter.messagebox.askyesno(title=READABLETEXT[1], message=READABLETEXT[106]) if result: SaveProject() - fn = tkinter.filedialog.askopenfilename(title=READABLETEXT[7], initialdir=r'./', filetypes=[(READABLETEXT[108], '.msct'),(READABLETEXT[112], '*')], multiple=True) - if fn == None or fn == '': + fn = tkinter.filedialog.askopenfilename(title=READABLETEXT[7], initialdir=r'./', + filetypes=[(READABLETEXT[108], '.msct'), (READABLETEXT[112], '*')], + multiple=True) + if fn is None or fn == '': return else: fn = fn[0] try: - with open(fn, 'r', encoding='UTF-8') as c: - dataset[0] = json.load(c) - except: + with open(fn, 'r', encoding='UTF-8') as C: + dataset[0] = json.load(C) + + except json.decoder.JSONDecodeError: # 程序规范修改:根据新的语法标准:except后面不能没有错误类型,测试后改为: + # json.decoder.JSONDecodeError print(READABLETEXT[8].format(fn)) log('无法打开{}'.format(fn)) return @@ -352,42 +326,39 @@ def __main__(): print('打开项目命令加载完成!') - - def appabout(): aabw = tk.Tk() aabw.title(READABLETEXT[9]) aabw.geometry('550x600') # 像素 tk.Label(aabw, text='', font=('', 15)).pack() tk.Label(aabw, text=READABLETEXT[10], font=('', 35)).pack() - tk.Label(aabw, text=READABLETEXT[11].format(VER[1]+VER[0]), font=('', 15)).pack() + tk.Label(aabw, text=READABLETEXT[11].format(VER[1] + VER[0]), font=('', 15)).pack() # pack 的side可以赋值为LEFT RTGHT TOP BOTTOM # grid 的row 是列数、column是行排,注意,这是针对空间控件本身大小来的,即是指向当前控件的第几个。 # place的 x、y是(x,y)坐标 - #pic = tk.PhotoImage(file='./bin/pics/Ryoun_S.png') - #tk.Label(aabw, image=pic, width=200, height=200).pack() - #del pic + # pic = tk.PhotoImage(file='./bin/pics/Ryoun_S.png') + # tk.Label(aabw, image=pic, width=200, height=200).pack() + # del pic tk.Label(aabw, text='', font=('', 5)).pack() tk.Label(aabw, text=READABLETEXT[12], font=('', 20)).pack() tk.Label(aabw, text='', font=('', 15)).pack() for i in READABLETEXT[15]: - tk.Label(aabw, text=i[0], font=('', 17 if i[1] else 15,'bold' if i[1] else '')).pack() + tk.Label(aabw, text=i[0], font=('', 17 if i[1] else 15, 'bold' if i[1] else '')).pack() tk.Label(aabw, text='', font=('', 5)).pack() if DEFAULTLANGUAGE != 'zh-CN': tk.Label(aabw, text=READABLETEXT[16], font=('', 15)).pack() for i in READABLETEXT['Translator']: - tk.Label(aabw, text=i[0], font=('', 17 if i[1] else 15,'bold' if i[1] else '')).pack() + tk.Label(aabw, text=i[0], font=('', 17 if i[1] else 15, 'bold' if i[1] else '')).pack() + def exitAboutWindow(): aabw.destroy() - - tk.Button(aabw,text=READABLETEXT[13],command=exitAboutWindow).pack() - + + tk.Button(aabw, text=READABLETEXT[13], command=exitAboutWindow).pack() + aabw.mainloop() - print('关于命令加载完成!') - def apphelp(): ahpw = tk.Tk() ahpw.title(READABLETEXT[19]) @@ -397,12 +368,12 @@ def __main__(): print('帮助命令加载完成!') - - def FromMP3(): log('从MP3导入音乐') - mp3file = tkinter.filedialog.askopenfilename(title=READABLETEXT[20], initialdir=r'./', filetypes=[(READABLETEXT[113], '.mp3 .m4a'), (READABLETEXT[112], '*')], multiple=True) - if mp3file == None or mp3file == '': + mp3file = tkinter.filedialog.askopenfilename(title=READABLETEXT[20], initialdir=r'./', + filetypes=[(READABLETEXT[113], '.mp3 .m4a'), + (READABLETEXT[112], '*')], multiple=True) + if mp3file is None or mp3file == '': log('取消') return else: @@ -411,32 +382,35 @@ def __main__(): from nmcsup.trans import Mp32Mid if not os.path.exists('./Temp/'): os.makedirs('./Temp/') - Mp32Mid(mp3file,'./Temp/Trans.mid') + Mp32Mid(mp3file, './Temp/Trans.mid') log('打开midi文件./Temp/Trans.mid') th = NewThread(ReadMidi, ('./Temp/Trans.mid',)) th.start() del mp3file - def midiSPT(th): - for i in th.getResult(): + + def midiSPT(th_): + for i in th_.getResult(): datas = DMM() datas['notes'] = i dataset[0]['musics'].append(datas) - del th + del th_ global is_save is_save = False global NowMusic RefreshMain() RefreshMusic(NowMusic) + threading.Thread(target=midiSPT, args=(th,)).start() del th print('读MP3加载完成') - def FromMidi(): log('从midi导入音乐') - midfile = tkinter.filedialog.askopenfilename(title=READABLETEXT[21], initialdir=r'./', filetypes=[(READABLETEXT[114], '.mid .midi'), (READABLETEXT[112], '*')], multiple=True) - if midfile == None or midfile == '': + midfile = tkinter.filedialog.askopenfilename(title=READABLETEXT[21], initialdir=r'./', + filetypes=[(READABLETEXT[114], '.mid .midi'), + (READABLETEXT[112], '*')], multiple=True) + if midfile is None or midfile == '': log('取消') return else: @@ -444,55 +418,57 @@ def __main__(): th = NewThread(ReadMidi, (midfile,)) th.start() del midfile - def midiSPT(th): - for i in th.getResult(): + + def midiSPT(th_): + for i in th_.getResult(): datas = DMM() datas['notes'] = i dataset[0]['musics'].append(datas) - del th + del th_ global is_save is_save = False global NowMusic RefreshMain() RefreshMusic(NowMusic) + threading.Thread(target=midiSPT, args=(th,)).start() del th - print('读midi命令加载完成!') - def FromForm(): log('从文本读入音轨') - fn = tkinter.filedialog.askopenfilename(title=READABLETEXT[22], initialdir=r'./', filetypes=[(READABLETEXT[115], '.txt'), (READABLETEXT[112], '*')], multiple=True) - if fn == None or fn =='': + fn = tkinter.filedialog.askopenfilename(title=READABLETEXT[22], initialdir=r'./', + filetypes=[(READABLETEXT[115], '.txt'), (READABLETEXT[112], '*')], + multiple=True) + if fn is None or fn == '': log('取消') return else: fn = fn[0] th = NewThread(ReadFile, (fn,)) th.start() - def midiSPT(th): - for i in th.getResult(): + + def midiSPT(th_): + for i in th_.getResult(): datas = DMM() datas['notes'] = i dataset[0]['musics'].append(datas) - del th + del th_ global is_save is_save = False global NowMusic RefreshMain() RefreshMusic(NowMusic) + threading.Thread(target=midiSPT, args=(th,)).start() - print('读txt命令加载完成!') - def FromText(): log('写入音符至音轨') dat = tkinter.simpledialog.askstring(title=READABLETEXT[23], prompt=READABLETEXT[14], initialvalue='`1 .2 C') - if dat == None: + if dat is None: return datas = [] for i in dat.split(' '): @@ -509,43 +485,39 @@ def __main__(): RefreshMain() RefreshMusic(NowMusic) - print('写入命令加载完成!') - - def ShowCMD(): log('展示指令') global NowMusic from nmcsup.trans import Note2Cmd - RefreshCMDList(Note2Cmd(dataset[0]['musics'][NowMusic]['notes'],dataset[0]['musics'][NowMusic]['set']['ScoreboardName'],dataset[0]['musics'][NowMusic]['set']['Instrument'],dataset[0]['mainset']['PlayerSelect'])) - + RefreshCMDList( + Note2Cmd(dataset[0]['musics'][NowMusic]['notes'], dataset[0]['musics'][NowMusic]['set']['ScoreboardName'], + dataset[0]['musics'][NowMusic]['set']['Instrument'], dataset[0]['mainset']['PlayerSelect'])) def MakeCMD(): log('生成文件') from msctspt.funcOpera import makeFuncFiles file = tkinter.filedialog.askdirectory(title=READABLETEXT[25], initialdir=r'./') - if file == None or file =='': + if file is None or file == '': log('取消') return else: - makeFuncFiles(dataset[0], file+'/') - + makeFuncFiles(dataset[0], file + '/') def MakeCMDdir(): log('生成函数包') from msctspt.funcOpera import makeFunDir file = tkinter.filedialog.askdirectory(title=READABLETEXT[26], initialdir=r'./') - if file == None or file =='': + if file is None or file == '': log('取消') return else: - makeFunDir(dataset[0], file+'/') - + makeFunDir(dataset[0], file + '/') def MakePackFile(): file = tkinter.filedialog.askdirectory(title=READABLETEXT[27], initialdir=r'./') - if file == None or file =='': + if file is None or file == '': log('取消') return import zipfile @@ -556,194 +528,204 @@ def __main__(): os.makedirs('./temp/') makeFunDir(dataset[0], './temp/') - shutil.move('./temp/{}Pack/behavior_packs/{}/functions'.format(dataset[0]['mainset']['PackName'],dataset[0]['mainset']['PackName']),'./') + shutil.move('./temp/{}Pack/behavior_packs/{}/functions'.format(dataset[0]['mainset']['PackName'], + dataset[0]['mainset']['PackName']), './') - shutil.move('./temp/{}Pack/behavior_packs/{}/manifest.json'.format(dataset[0]['mainset']['PackName'],dataset[0]['mainset']['PackName']),'./') + shutil.move('./temp/{}Pack/behavior_packs/{}/manifest.json'.format(dataset[0]['mainset']['PackName'], + dataset[0]['mainset']['PackName']), './') - with zipfile.ZipFile('{}/{}.mcpack'.format(file,dataset[0]['mainset']['PackName']), 'w') as zipobj: + with zipfile.ZipFile('{}/{}.mcpack'.format(file, dataset[0]['mainset']['PackName']), 'w') as zipobj: for i in os.listdir('./functions/'): zipobj.write('./functions/{}'.format(i)) zipobj.write('./manifest.json') - shutil.move('./functions','./temp/') - shutil.move('./manifest.json','./temp/') + shutil.move('./functions', './temp/') + shutil.move('./manifest.json', './temp/') shutil.rmtree('./temp/') - - - - - - #转为空方块世界 + # 转为空方块世界 def ToBlockWorldEpt(): import zipfile + global dire from nmcsup.trans import Cmd2World, Datas2BlkWorld, Notes2Player while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[116],initialvalue = '16 4 16') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[116], + initialvalue='16 4 16') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue break Outdire = tkinter.filedialog.askdirectory(title=READABLETEXT[29], initialdir=r'./') - if Outdire == None or Outdire == '': + if Outdire is None or Outdire == '': log('取消') return else: - Outdire = '{}/{}/'.format(Outdire[0],dataset[0]['mainset']['PackName']) - with zipfile.ZipFile('./nmcsup/EptWorld.zip', 'r') as zipobj: + Outdire = '{}/{}/'.format(Outdire[0], dataset[0]['mainset']['PackName']) + with zipfile.ZipFile('./nmcsup/EptWorld.zip') as zipobj: # , 'r' (参数等于默认时不写) zipobj.extractall(Outdire) NoteData = [] for i in dataset[0]['musics']: NoteData.append(i['notes']) - Datas2BlkWorld(NoteData,Outdire,dire) + Datas2BlkWorld(NoteData, Outdire, dire) del NoteData for i in range(len(dataset[0]['musics'])): - Cmd2World(Notes2Player(dataset[0]['musics'][i]['notes'],[dire[0],dire[1],dire[2]+i],{'Ent':dataset[0]['musics'][i]['set']['EntityName'],'Pls':dataset[0]['mainset']['PlayerSelect'],'Ins':dataset[0]['musics'][i]['set']['Instrument']}),Outdire,[dire[0]-5-i,dire[1],dire[2]]) + Cmd2World(Notes2Player(dataset[0]['musics'][i]['notes'], [dire[0], dire[1], dire[2] + i], + {'Ent': dataset[0]['musics'][i]['set']['EntityName'], + 'Pls': dataset[0]['mainset']['PlayerSelect'], + 'Ins': dataset[0]['musics'][i]['set']['Instrument']}), Outdire, + [dire[0] - 5 - i, dire[1], dire[2]]) del dire, Outdire - - - - #转为已存在的方块世界 + # 转为已存在的方块世界 def ToBlockWorld(): from nmcsup.trans import Cmd2World, Datas2BlkWorld, Notes2Player + global dire while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[116],initialvalue = '16 4 16') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[116], + initialvalue='16 4 16') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue break Outdire = tkinter.filedialog.askdirectory(title=READABLETEXT[29], initialdir=r'./') - if Outdire == None or Outdire == '': + if Outdire is None or Outdire == '': log('取消') return else: - Outdire+='/' + Outdire += '/' NoteData = [] for i in dataset[0]['musics']: NoteData.append(i['notes']) - Datas2BlkWorld(NoteData,Outdire,dire) + Datas2BlkWorld(NoteData, Outdire, dire) del NoteData for i in range(len(dataset[0]['musics'])): - Cmd2World(Notes2Player(dataset[0]['musics'][i]['notes'],[dire[0],dire[1],dire[2]+i],{'Ent':dataset[0]['musics'][i]['set']['EntityName'],'Pls':dataset[0]['mainset']['PlayerSelect'],'Ins':dataset[0]['musics'][i]['set']['Instrument']}),Outdire,[dire[0]-5-i,dire[1],dire[2]]) + Cmd2World(Notes2Player(dataset[0]['musics'][i]['notes'], [dire[0], dire[1], dire[2] + i], + {'Ent': dataset[0]['musics'][i]['set']['EntityName'], + 'Pls': dataset[0]['mainset']['PlayerSelect'], + 'Ins': dataset[0]['musics'][i]['set']['Instrument']}), Outdire, + [dire[0] - 5 - i, dire[1], dire[2]]) del dire, Outdire - - - - #生成函数播放器 + # 生成函数播放器 def MakeFuncPlayer(): + global dire while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[116],initialvalue = '16 4 16') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[116], + initialvalue='16 4 16') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue break Outdire = tkinter.filedialog.askdirectory(title=READABLETEXT[30], initialdir=r'./') - if Outdire == None or Outdire == '': + if Outdire is None or Outdire == '': return else: - Outdire = '{}/{}/'.format(Outdire,dataset[0]['mainset']['PackName']) + Outdire = '{}/{}/'.format(Outdire, dataset[0]['mainset']['PackName']) from nmcsup.trans import Notes2Player for i in range(len(dataset[0]['musics'])): - open(Outdire+dataset[0]['musics'][i]['set']['FileName']+'_'+str(i)+'.mcfunction','w',encoding='utf-8').writelines(Notes2Player(dataset[0]['musics'][i]['notes'],[dire[0],dire[1],dire[2]+i],{'Ent':dataset[0]['musics'][i]['set']['EntityName'],'Pls':dataset[0]['mainset']['PlayerSelect'],'Ins':dataset[0]['musics'][i]['set']['Instrument']})) - + open(Outdire + dataset[0]['musics'][i]['set']['FileName'] + '_' + str(i) + '.mcfunction', 'w', + encoding='utf-8').writelines( + Notes2Player(dataset[0]['musics'][i]['notes'], [dire[0], dire[1], dire[2] + i], + {'Ent': dataset[0]['musics'][i]['set']['EntityName'], + 'Pls': dataset[0]['mainset']['PlayerSelect'], + 'Ins': dataset[0]['musics'][i]['set']['Instrument']})) - - - - #转为空指令世界 + # 转为空指令世界 def ToCmdWorldEpt(): import zipfile + global dire from nmcsup.trans import Cmd2World, Note2Cmd while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[116],initialvalue = '16 4 16') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[116], + initialvalue='16 4 16') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue - break Outdire = tkinter.filedialog.askdirectory(title=READABLETEXT[29], initialdir=r'./') - if Outdire == None or Outdire == '': + if Outdire is None or Outdire == '': return else: - Outdire+='/'+dataset[0]['mainset']['PackName']+'/' - with zipfile.ZipFile('./nmcsup/EptWorld.zip', 'r') as zipobj: + Outdire += '/' + dataset[0]['mainset']['PackName'] + '/' + with zipfile.ZipFile('./nmcsup/EptWorld.zip') as zipobj: # , 'r' (默认参数不用设置) zipobj.extractall(Outdire) for i in range(len(dataset[0]['musics'])): - Cmd2World(Note2Cmd(dataset[0]['musics'][i]['notes'],dataset[0]['musics'][i]['set']['ScoreboardName'],dataset[0]['musics'][i]['set']['Instrument'],dataset[0]['mainset']['PlayerSelect'],True),Outdire,[dire[0],dire[1],dire[2]+i]) - del dire,Outdire - + Cmd2World(Note2Cmd(dataset[0]['musics'][i]['notes'], dataset[0]['musics'][i]['set']['ScoreboardName'], + dataset[0]['musics'][i]['set']['Instrument'], dataset[0]['mainset']['PlayerSelect'], + True), Outdire, [dire[0], dire[1], dire[2] + i]) + del dire, Outdire - - #转为已存在的指令世界 + # 转为已存在的指令世界 def ToCmdWorld(): + global dire from nmcsup.trans import Cmd2World, Note2Cmd while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[116],initialvalue = '16 4 16') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[116], + initialvalue='16 4 16') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue break Outdire = tkinter.filedialog.askdirectory(title=READABLETEXT[29], initialdir=r'./') - if Outdire == None or Outdire == '': + if Outdire is None or Outdire == '': return else: - Outdire+='/' + Outdire += '/' for i in range(len(dataset[0]['musics'])): - Cmd2World(Note2Cmd(dataset[0]['musics'][i]['notes'],dataset[0]['musics'][i]['set']['ScoreboardName'],dataset[0]['musics'][i]['set']['Instrument'],dataset[0]['mainset']['PlayerSelect'],True),Outdire,[dire[0],dire[1],dire[2]+i]) - del dire,Outdire - + Cmd2World(Note2Cmd(dataset[0]['musics'][i]['notes'], dataset[0]['musics'][i]['set']['ScoreboardName'], + dataset[0]['musics'][i]['set']['Instrument'], dataset[0]['mainset']['PlayerSelect'], + True), Outdire, [dire[0], dire[1], dire[2] + i]) + del dire, Outdire - - - - #函数输入指令块 + # 函数输入指令块 def func2World(): from nmcsup.trans import Cmd2World + global dire while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[116],initialvalue = '16 4 16') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[116], + initialvalue='16 4 16') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue break Outdire = tkinter.filedialog.askdirectory(title=READABLETEXT[29], initialdir=r'./') - if Outdire == None or Outdire == '': + if Outdire is None or Outdire == '': return else: - Outdire+='/' - Cmd2World(open(tkinter.filedialog.askopenfilename(title=READABLETEXT[31], initialdir=r'./', filetypes=[(READABLETEXT[118], '.mcfunction'), (READABLETEXT[112], '*')], multiple=True)[0],'r',encoding='utf-8').readlines(),Outdire,dire) + Outdire += '/' + Cmd2World(open(tkinter.filedialog.askopenfilename(title=READABLETEXT[31], initialdir=r'./', + filetypes=[(READABLETEXT[118], '.mcfunction'), + (READABLETEXT[112], '*')], multiple=True)[0], 'r', + encoding='utf-8').readlines(), Outdire, dire) - - - - #大函数分割并载入执行链 + # 大函数分割并载入执行链 def bigFunc2World(): log('分割大函数') + global dire import uuid from msctspt.funcOpera import funSplit @@ -751,293 +733,287 @@ def __main__(): from nmcsup.trans import Cmd2World while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[119],initialvalue = '16 4 16') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[119], + initialvalue='16 4 16') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[120]) continue break Outdire = tkinter.filedialog.askdirectory(title=READABLETEXT[29], initialdir=r'./') - if Outdire == None or Outdire == '': + if Outdire is None or Outdire == '': log('取消') return else: - Outdire+='/' - log('获得地图地址:'+Outdire) - fileName = tkinter.filedialog.askopenfilename(title=READABLETEXT[31], initialdir=r'./', filetypes=[(READABLETEXT[118], '.mcfunction'), (READABLETEXT[112], '*')], multiple=True) - if fileName == None or fileName == '': + Outdire += '/' + log('获得地图地址:' + Outdire) + fileName = tkinter.filedialog.askopenfilename(title=READABLETEXT[31], initialdir=r'./', + filetypes=[(READABLETEXT[118], '.mcfunction'), + (READABLETEXT[112], '*')], multiple=True) + if fileName is None or fileName == '': log('取消') return else: fileName = fileName[0] - log('获得文件名:'+fileName) - bigFile = open(fileName,'r',encoding='utf-8') + log('获得文件名:' + fileName) + bigFile = open(fileName, 'r', encoding='utf-8') parts = funSplit(bigFile) if parts == -1: tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[121]) return log('创建函数文件夹') - packName = fileName[len(fileName)-fileName[::-1].index('/'):fileName.index('.')] + packName = fileName[len(fileName) - fileName[::-1].index('/'):fileName.index('.')] packDire = hans2pinyin(packName) try: - os.makedirs(Outdire+'behavior_packs/'+packDire+'/functions/') - except: + os.makedirs(Outdire + 'behavior_packs/' + packDire + '/functions/') + except FileExistsError: log('已存在文件夹') log('创建manifest.json以及world_behavior_packs.json') behaviorUuid = uuid.uuid4() - if os.path.exists(Outdire+'world_behavior_packs.json'): - with open(Outdire+'world_behavior_packs.json', 'r') as f: + if os.path.exists(Outdire + 'world_behavior_packs.json'): + with open(Outdire + 'world_behavior_packs.json', 'r') as f: have = json.load(f) - have.append({'pack_id': str(behaviorUuid), 'version': [ 0, 0, 1 ]}) - with open(Outdire+'world_behavior_packs.json', 'w',encoding='utf-8') as f: - json.dump(have,f) + have.append({'pack_id': str(behaviorUuid), 'version': [0, 0, 1]}) + with open(Outdire + 'world_behavior_packs.json', 'w', encoding='utf-8') as f: + json.dump(have, f) del have else: - with open(Outdire+'world_behavior_packs.json', 'w',encoding='utf-8') as f: - f.write('[\n {\'pack_id\': \'' + str(behaviorUuid) +'\',\n \'version\': [ 0, 0, 1 ]}\n]') - with open(Outdire+'behavior_packs/'+packDire+'/manifest.json', 'w') as f: - f.write('{\n \'format_version\': 1,\n \'header\': {\n \'description\': \''+packName+' Pack : behavior pack\',\n \'version\': [ 0, 0, 1 ],\n \'name\': \''+packName+'Pack\',\n \'uuid\': \'' + str(behaviorUuid) + '\'\n },\n \'modules\': [\n {\n \'description\': \''+packName+' Pack : behavior pack\',\n \'type\': \'data\',\n \'version\': [ 0, 0, 1 ],\n \'uuid\': \'' + str(uuid.uuid4()) + '\'\n }\n ]\n}') + with open(Outdire + 'world_behavior_packs.json', 'w', encoding='utf-8') as f: + f.write('[\n {\'pack_id\': \'' + str(behaviorUuid) + '\',\n \'version\': [ 0, 0, 1 ]}\n]') + with open(Outdire + 'behavior_packs/' + packDire + '/manifest.json', 'w') as f: + f.write( + '{\n \'format_version\': 1,\n \'header\': {\n \'description\': \'' + packName + + ' Pack : behavior pack\',\n \'version\': [ 0, 0, 1 ],\n \'name\': \'' + packName + + 'Pack\',\n \'uuid\': \'' + str( + behaviorUuid) + '\'\n },\n \'modules\': [\n {\n \'description\': \'' + packName + + ' Pack : behavior pack\',\n \'type\': ' + '\'data\',\n \'version\': [ 0, 0, 1 ],\n \'uuid\': \'' + str( + uuid.uuid4()) + '\'\n }\n ]\n}') # 要求文段不能过长 cmdlist = [] - for i in parts : - open(Outdire+'behavior_packs/'+packDire+'/functions/'+packDire+str(parts.index(i)+1)+'.mcfunction','w',encoding='utf-8').writelines(i) - cmdlist.append('function '+packDire+str(parts.index(i)+1)) - Cmd2World(cmdlist,Outdire,dire) - del cmdlist,behaviorUuid,Outdire,fileName,bigFile,parts,dire,packName,packDire - - - + for i in parts: + open(Outdire + 'behavior_packs/' + packDire + '/functions/' + packDire + str( + parts.index(i) + 1) + '.mcfunction', 'w', encoding='utf-8').writelines(i) + cmdlist.append('function ' + packDire + str(parts.index(i) + 1)) + Cmd2World(cmdlist, Outdire, dire) + del cmdlist, behaviorUuid, Outdire, fileName, bigFile, parts, dire, packName, packDire def toScbBDXfile(): from msctspt.transfer import note2bdx + global dire while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[122],initialvalue = '0 0 0') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[122], + initialvalue='0 0 0') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[120]) continue break - - fileName = tkinter.filedialog.asksaveasfilename(title=READABLETEXT[32], initialdir=r'./', filetypes=[(READABLETEXT[123], '.bdx'), (READABLETEXT[112], '*')], defaultextension=dataset[0]['mainset']['PackName']+'.bdx',initialfile=dataset[0]['mainset']['PackName']+'.bdx') - if fileName == None or fileName == '': + + fileName = tkinter.filedialog.asksaveasfilename(title=READABLETEXT[32], initialdir=r'./', + filetypes=[(READABLETEXT[123], '.bdx'), + (READABLETEXT[112], '*')], + defaultextension=dataset[0]['mainset']['PackName'] + '.bdx', + initialfile=dataset[0]['mainset']['PackName'] + '.bdx') + if fileName is None or fileName == '': log('取消') return - - log('获得文件名:'+fileName) - - res = note2bdx(fileName,dire,dataset[0]['musics'][NowMusic]['notes'],dataset[0]['musics'][NowMusic]['set']['ScoreboardName'],dataset[0]['musics'][NowMusic]['set']['Instrument'],dataset[0]['mainset']['PlayerSelect']) - log('转换结束!\n'+str(res)) - tkinter.messagebox.showinfo(READABLETEXT[33],READABLETEXT[124].format(str(res))) - + log('获得文件名:' + fileName) + res = note2bdx(fileName, dire, dataset[0]['musics'][NowMusic]['notes'], + dataset[0]['musics'][NowMusic]['set']['ScoreboardName'], + dataset[0]['musics'][NowMusic]['set']['Instrument'], dataset[0]['mainset']['PlayerSelect']) + log('转换结束!\n' + str(res)) + tkinter.messagebox.showinfo(READABLETEXT[33], READABLETEXT[124].format(str(res))) def wsPlay(): from msctspt.transfer import note2webs - spd = tkinter.simpledialog.askfloat(READABLETEXT[34],prompt=READABLETEXT[125],initialvalue = '5.0') + spd = tkinter.simpledialog.askfloat(READABLETEXT[34], prompt=READABLETEXT[125], initialvalue='5.0') tkinter.messagebox.showinfo(title=READABLETEXT[35], message=READABLETEXT[126]) - note2webs(dataset[0]['musics'][NowMusic]['notes'],dataset[0]['musics'][NowMusic]['set']['Instrument'],spd,dataset[0]['mainset']['PlayerSelect']) - - - - + note2webs(dataset[0]['musics'][NowMusic]['notes'], dataset[0]['musics'][NowMusic]['set']['Instrument'], spd, + dataset[0]['mainset']['PlayerSelect']) def toRSworldEPT(): import zipfile + global dire + dire = "" from msctspt.transfer import note2RSworld while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[116],initialvalue = '16 4 16') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[116], + initialvalue='16 4 16') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue break Outdire = tkinter.filedialog.askdirectory(title=READABLETEXT[29], initialdir=r'./') - if Outdire == None or Outdire == '': + if Outdire is None or Outdire == '': return else: - Outdire+='/'+dataset[0]['mainset']['PackName']+'/' - with zipfile.ZipFile('./nmcsup/EptWorld.zip', 'r') as zipobj: + Outdire += '/' + dataset[0]['mainset']['PackName'] + '/' + with zipfile.ZipFile('./nmcsup/EptWorld.zip') as zipobj: # , 'r'(默认参数不用写) zipobj.extractall(Outdire) for i in range(len(dataset[0]['musics'])): - note2RSworld(Outdire,dire,dataset[0]['musics'][i]['notes'],dataset[0]['musics'][i]['set']['Instrument']) - - del dire,Outdire - + note2RSworld(Outdire, dire, dataset[0]['musics'][i]['notes'], dataset[0]['musics'][i]['set']['Instrument']) + del dire, Outdire def toRSworld(): from msctspt.transfer import note2RSworld + global dire + dire = "" while True: try: - dire = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[116],initialvalue = '16 4 16') - if dire == None or dire == '': + dire = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[116], + initialvalue='16 4 16') + if dire is None or dire == '': return dire = [int(dire.split(' ')[0]), int(dire.split(' ')[1]), int(dire.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue break Outdire = tkinter.filedialog.askdirectory(title=READABLETEXT[29], initialdir=r'./') - if Outdire == None or Outdire == '': + if Outdire is None or Outdire == '': return else: - Outdire+='/' + Outdire += '/' for i in range(len(dataset[0]['musics'])): - note2RSworld(Outdire,dire,dataset[0]['musics'][i]['notes'],dataset[0]['musics'][i]['set']['Instrument']) - del dire,Outdire - - - + note2RSworld(Outdire, dire, dataset[0]['musics'][i]['notes'], dataset[0]['musics'][i]['set']['Instrument']) + del dire, Outdire def world2RyStruct(): + global begp + global endp outdir = tkinter.filedialog.askdirectory(title=READABLETEXT[36], initialdir=r'./') - if outdir == None or outdir == '': + if outdir is None or outdir == '': return else: - outdir+='/' + outdir += '/' while True: try: - begp = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[127],initialvalue = '16 4 16') - if begp == None or begp == '': + begp = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[127], + initialvalue='16 4 16') + if begp is None or begp == '': return begp = [int(begp.split(' ')[0]), int(begp.split(' ')[1]), int(begp.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue break while True: try: - endp = tkinter.simpledialog.askstring(title = READABLETEXT[28],prompt=READABLETEXT[128],initialvalue = '16 4 16') - if endp == None or endp == '': + endp = tkinter.simpledialog.askstring(title=READABLETEXT[28], prompt=READABLETEXT[128], + initialvalue='16 4 16') + if endp is None or endp == '': return endp = [int(endp.split(' ')[0]), int(endp.split(' ')[1]), int(endp.split(' ')[2])] - except: + except ValueError: # 测试完为ValueError,故修改语法 tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[117]) continue break - isAir = tkinter.messagebox.askyesno(READABLETEXT[37],READABLETEXT[129]) - fileName = tkinter.filedialog.asksaveasfilename(title=READABLETEXT[38], initialdir=r'./', filetypes=[(READABLETEXT[130], '.RyStruct'), (READABLETEXT[112], '*')], defaultextension='*.RyStruct',initialfile='*.RyStruct') - if fileName == None or fileName == '': + isAir = tkinter.messagebox.askyesno(READABLETEXT[37], READABLETEXT[129]) + fileName = tkinter.filedialog.asksaveasfilename(title=READABLETEXT[38], initialdir=r'./', + filetypes=[(READABLETEXT[130], '.RyStruct'), + (READABLETEXT[112], '*')], + defaultextension='*.RyStruct', initialfile='*.RyStruct') + if fileName is None or fileName == '': log('取消') return from msctspt.transfer import ryStruct rys = ryStruct(outdir) - rys.world2Rys(begp,endp,isAir) + rys.world2Rys(begp, endp, isAir) + error1 = True try: - with open(fileName,'w',encoding='utf-8') as f: - json.dump(rys.RyStruct,f,sort_keys=True, indent=4, separators=(', ', ': '), ensure_ascii=False) - tkinter.messagebox.showinfo(READABLETEXT[33],READABLETEXT[131].format(fileName)) - except: - tkinter.messagebox.showerror(READABLETEXT[39],READABLETEXT[132].format(fileName,str(rys.RyStruct))) + with open(fileName, 'w', encoding='utf-8') as f: + json.dump(rys.RyStruct, f, sort_keys=True, indent=4, separators=(', ', ': '), ensure_ascii=False) + tkinter.messagebox.showinfo(READABLETEXT[33], READABLETEXT[131].format(fileName)) + error1 = False + except FileNotFoundError: + tkinter.messagebox.showerror(READABLETEXT[39], READABLETEXT[132].format(fileName, str(rys.RyStruct))) rys.closeLevel() - - + finally: + if error1 is True: + tkinter.messagebox.showerror(READABLETEXT[39], READABLETEXT[132].format(fileName, str(rys.RyStruct))) + rys.closeLevel() def world2BDX(): - tkinter.messagebox.showerror(READABLETEXT[0],READABLETEXT[133]) + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[133]) - - - - - - - - - - - - - - #使用邮件反馈bug + # 使用邮件反馈bug def sendBugReport(): from msctspt.bugReporter import report - name = tkinter.simpledialog.askstring(title = READABLETEXT[40],prompt=READABLETEXT[134]) - contact = tkinter.simpledialog.askstring(title = READABLETEXT[40],prompt=READABLETEXT[135]) - describetion = tkinter.simpledialog.askstring(title = READABLETEXT[40],prompt=READABLETEXT[136]) - report(name,contact,describetion).emailReport() - del name,contact,describetion - - - - - - - - - - + name = tkinter.simpledialog.askstring(title=READABLETEXT[40], prompt=READABLETEXT[134]) + contact = tkinter.simpledialog.askstring(title=READABLETEXT[40], prompt=READABLETEXT[135]) + describetion = tkinter.simpledialog.askstring(title=READABLETEXT[40], prompt=READABLETEXT[136]) + report(name, contact, describetion).emailReport() + del name, contact, describetion def ClearLog(): global clearLog clearLog = not clearLog if clearLog: - tkinter.messagebox.showinfo(READABLETEXT[33],READABLETEXT[137]) + tkinter.messagebox.showinfo(READABLETEXT[33], READABLETEXT[137]) else: - tkinter.messagebox.showinfo(READABLETEXT[33],READABLETEXT[138]) - - - + tkinter.messagebox.showinfo(READABLETEXT[33], READABLETEXT[138]) print('生成部分及其余命令加载完成!') - print('完成!') # 窗口部分 print('增加窗口元素...') global root - root.title(READABLETEXT[41].format(VER[1]+VER[0])) + root.title(READABLETEXT[41].format(VER[1] + VER[0])) root.geometry('900x900') # 像素 print('完成!') - print('加载点击与页面更新命令...') # 音轨菜单被点击 - def MusicList_selected(event): global NowMusic NowMusic = ListMusicList.get(ListMusicList.curselection()) - log('刷新音轨'+str(NowMusic)) + log('刷新音轨' + str(NowMusic)) RefreshMusic(NowMusic) - + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) # 音符菜单被点击 def NoteList_selected(event): + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) pass # 编辑音符操作 - def CMDList_selected(event): + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) pass # 命令编辑操作 + CMDList_selected("") # 保证函数使用 + # !!!!!上面这行在写完这个函数之后记得删!!!! print('菜单点击命令加载完成!') - # 刷新音轨部分 def RefreshMusic(Music=0): LabelEntityName['text'] = READABLETEXT[42].format(dataset[0]['musics'][Music]['set']['EntityName']) - LabelScoreboardName['text']=READABLETEXT[43].format(dataset[0]['musics'][Music]['set']['ScoreboardName']) + LabelScoreboardName['text'] = READABLETEXT[43].format(dataset[0]['musics'][Music]['set']['ScoreboardName']) LabelInstrument['text'] = READABLETEXT[44].format(dataset[0]['musics'][Music]['set']['Instrument']) LabelFileName['text'] = READABLETEXT[45].format(dataset[0]['musics'][Music]['set']['FileName']) NoteList_var.set(()) # 为列表框设置新值 for i in dataset[0]['musics'][Music]['notes']: ListNoteList.insert(tk.END, str(i)) - # 刷新主要部分 def RefreshMain(): LabelPackName['text'] = READABLETEXT[46].format(str(dataset[0]['mainset']['PackName'])) @@ -1050,69 +1026,71 @@ def __main__(): global NowMusic NowMusic = 0 - def RefreshCMDList(CMDList): ListCMDList.delete(tk.END) for i in CMDList: ListCMDList.insert(tk.END, str(i)) - print('页面刷新函数加载完成!') - def changePackName(event): a = tkinter.simpledialog.askstring(title=READABLETEXT[50], prompt=READABLETEXT[139], initialvalue='Ryoun') - if a == None: + if a is None: return dataset[0]['mainset']['PackName'] = a - del a + del a RefreshMain() - + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) def changeMusicTitle(event): a = tkinter.simpledialog.askstring(title=READABLETEXT[50], prompt=READABLETEXT[140], initialvalue='Noname') - if a == None: + if a is None: return - dataset[0]['mainset']['MusicTitle'] = a + dataset[0]['mainset']['MusicTitle'] = a RefreshMain() - + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) def changeIsRepeat(event): dataset[0]['mainset']['IsRepeat'] = not dataset[0]['mainset']['IsRepeat'] RefreshMain() - + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) def changePlayerSelect(event): - dataset[0]['mainset']['PlayerSelect'] = tkinter.simpledialog.askstring(title=READABLETEXT[50], prompt=READABLETEXT[141], initialvalue='') - if dataset[0]['mainset']['PlayerSelect'] == None: + dataset[0]['mainset']['PlayerSelect'] = tkinter.simpledialog.askstring(title=READABLETEXT[50], + prompt=READABLETEXT[141], + initialvalue='') + if dataset[0]['mainset']['PlayerSelect'] is None: dataset[0]['mainset']['PlayerSelect'] = '' RefreshMain() - + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) def changeEntityName(event): global NowMusic - a = tkinter.simpledialog.askstring(title=READABLETEXT[51], prompt=READABLETEXT[142], initialvalue='musicSupport') - if a == None: + a = tkinter.simpledialog.askstring(title=READABLETEXT[51], prompt=READABLETEXT[142], + initialvalue='musicSupport') + if a is None: return - dataset[0]['musics'][NowMusic]['set']['EntityName'] = a + dataset[0]['musics'][NowMusic]['set']['EntityName'] = a RefreshMusic(NowMusic) - + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) def changeScoreboardName(event): global NowMusic - a = tkinter.simpledialog.askstring(title=READABLETEXT[51], prompt=READABLETEXT[143], initialvalue='musicSupport') - if a == None: + a = tkinter.simpledialog.askstring(title=READABLETEXT[51], prompt=READABLETEXT[143], + initialvalue='musicSupport') + if a is None: return - dataset[0]['musics'][NowMusic]['set']['ScoreboardName'] = a + dataset[0]['musics'][NowMusic]['set']['ScoreboardName'] = a RefreshMusic(NowMusic) - + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) def changeInstrument(event): from nmcsup.const import Instuments as inst global NowMusic - while(True): - instemp = tkinter.simpledialog.askstring(title=READABLETEXT[51], prompt=READABLETEXT[144], initialvalue='note.harp') - if not instemp in inst.keys(): + while True: # 改正:(True) + instemp = tkinter.simpledialog.askstring(title=READABLETEXT[51], prompt=READABLETEXT[144], + initialvalue='note.harp') + if instemp not in inst.keys(): # 改正:not instemp in inst.keys() ,not in 为固定写法 if tkinter.messagebox.askyesno(title=READABLETEXT[1], message=READABLETEXT[145]): dataset[0]['musics'][NowMusic]['set']['Instrument'] = instemp del instemp @@ -1120,7 +1098,7 @@ def __main__(): else: smsg = READABLETEXT[52] for i, j in inst.items(): - smsg += i+' : '+j+'\n' + smsg += i + ' : ' + j + '\n' tkinter.messagebox.showinfo(title=READABLETEXT[1], message=smsg) del smsg else: @@ -1128,26 +1106,24 @@ def __main__(): del instemp break RefreshMusic(NowMusic) - + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) def changeFileName(event): global NowMusic a = tkinter.simpledialog.askstring(title=READABLETEXT[51], prompt=READABLETEXT[146], initialvalue='Music') - if a == None: + if a is None: return dataset[0]['musics'][NowMusic]['set']['FileName'] = a RefreshMusic(NowMusic) - + print(event) # 保证变量使用(虽然我不清楚金羿这为啥不调用要写个event) print('标签点击命令加载完成!') - def ResetSetting(): global dataset - dataset[0]['mainset'] = {'PackName': 'Ryoun','MusicTitle': 'Noname','IsRepeat': False,'PlayerSelect': ''} + dataset[0]['mainset'] = {'PackName': 'Ryoun', 'MusicTitle': 'Noname', 'IsRepeat': False, 'PlayerSelect': ''} RefreshMain() - def DelNowMusic(): global NowMusic del dataset[0]['musics'][NowMusic] @@ -1155,20 +1131,17 @@ def __main__(): RefreshMain() RefreshMusic(NowMusic) - from nmcsup.vers import resetver print('按钮点击命令加载完成!') print('完成!') - print('加载菜单与页面...') # 创建一个菜单 main_menu_bar = tk.Menu(root) - # 创建文件菜单 filemenu = tk.Menu(main_menu_bar, tearoff=0) @@ -1184,7 +1157,6 @@ def __main__(): # 将子菜单加入到菜单条中 main_menu_bar.add_cascade(label=READABLETEXT[58], menu=filemenu) - # 创建编辑菜单 editmenu = tk.Menu(main_menu_bar, tearoff=0) editmenu.add_command(label=READABLETEXT[59], command=FromMP3) @@ -1194,9 +1166,7 @@ def __main__(): # 将子菜单加入到菜单条中 main_menu_bar.add_cascade(label=READABLETEXT[63], menu=editmenu) - - - #创建函数菜单 + # 创建函数菜单 funcmenu = tk.Menu(main_menu_bar, tearoff=0) funcmenu.add_command(label=READABLETEXT[64], command=MakeCMD) funcmenu.add_command(label=READABLETEXT[65], command=MakeCMDdir) @@ -1204,10 +1174,7 @@ def __main__(): # 将子菜单加入到菜单条中 main_menu_bar.add_cascade(label=READABLETEXT[67], menu=funcmenu) - - - - #创建世界菜单 + # 创建世界菜单 worldmenu = tk.Menu(main_menu_bar, tearoff=0) worldmenu.add_command(label=READABLETEXT[68], command=ToBlockWorldEpt) worldmenu.add_command(label=READABLETEXT[69], command=ToBlockWorld) @@ -1220,7 +1187,6 @@ def __main__(): # 将子菜单加入到菜单条中 main_menu_bar.add_cascade(label=READABLETEXT[74], menu=worldmenu) - # 创建其他功能菜单 otherMenu = tk.Menu(main_menu_bar, tearoff=0) otherMenu.add_command(label=READABLETEXT[75], command=MakeFuncPlayer) @@ -1234,7 +1200,6 @@ def __main__(): main_menu_bar.add_cascade(label=READABLETEXT[81], menu=otherMenu) - # 创建实验功能菜单 trymenu = tk.Menu(main_menu_bar, tearoff=0) trymenu.add_command(label=READABLETEXT[82], command=ShowCMD) @@ -1242,12 +1207,6 @@ def __main__(): # 将子菜单加入到菜单条中 main_menu_bar.add_cascade(label=READABLETEXT[84], menu=trymenu) - - - - - - # 创建帮助菜单 helpmenu = tk.Menu(main_menu_bar, tearoff=0) helpmenu.add_command(label=READABLETEXT[85], command=ClearLog) @@ -1257,25 +1216,22 @@ def __main__(): helpmenu.add_command(label=READABLETEXT[87], command=apphelp) helpmenu.add_command(label=READABLETEXT[88], command=appabout) - helpmenu.add_command(label=READABLETEXT[89],command=sendBugReport) + helpmenu.add_command(label=READABLETEXT[89], command=sendBugReport) # 将子菜单加入到菜单条中 main_menu_bar.add_cascade(label=READABLETEXT[90], menu=helpmenu) - # 窗口内容 - - #上半部分框 + # 上半部分框 UpFrame = tk.Frame(root) - - #左边的框(音乐总设置) + # 左边的框(音乐总设置) UpLeftFrame = tk.Frame(UpFrame, bg='white') # 大标题 tk.Label(UpLeftFrame, text=READABLETEXT[91], font=('', 20)).pack() # 按钮式文本 LabelPackName = tk.Label(UpLeftFrame, bg='white', text=READABLETEXT[46], font=('', 15)) - LabelMusicTitle = tk.Label(UpLeftFrame, bg='white',text=READABLETEXT[47], font=('', 15)) + LabelMusicTitle = tk.Label(UpLeftFrame, bg='white', text=READABLETEXT[47], font=('', 15)) LabelIsRepeat = tk.Label(UpLeftFrame, bg='white', text=READABLETEXT[48], font=('', 15)) LabelPlayerSelect = tk.Label(UpLeftFrame, bg='white', text=READABLETEXT[49], font=('', 15)) # 绑定按钮 @@ -1290,12 +1246,9 @@ def __main__(): LabelPlayerSelect.pack() # 按钮:重置项目设置 tk.Button(UpLeftFrame, text=READABLETEXT[96], command=ResetSetting).pack() - #装入窗口 + # 装入窗口 UpLeftFrame.pack(side='left') - - - # 中间的框容器 UpMidleFrame = tk.Frame(UpFrame, bg='blue') # 列表 @@ -1304,21 +1257,19 @@ def __main__(): ListMusicList.bind('', MusicList_selected) # 设置选中响应函数 ListMusicList.pack(side='left') # 滑块 - tk.Scrollbar(UpMidleFrame,command=ListMusicList.yview).pack(side='left',fill='y') - #装入窗口 + tk.Scrollbar(UpMidleFrame, command=ListMusicList.yview).pack(side='left', fill='y') + # 装入窗口 UpMidleFrame.pack(side='left') - - - #右边的框容器 + # 右边的框容器 UpRightFrame = tk.Frame(UpFrame, bg='white') # 大标题 tk.Label(UpRightFrame, text=READABLETEXT[97], font=('', 20)).pack() # 按钮式文本 - LabelEntityName = tk.Label(UpRightFrame, bg='white',text=READABLETEXT[42], font=('', 15)) + LabelEntityName = tk.Label(UpRightFrame, bg='white', text=READABLETEXT[42], font=('', 15)) LabelScoreboardName = tk.Label(UpRightFrame, bg='white', text=READABLETEXT[43], font=('', 15)) - LabelInstrument = tk.Label(UpRightFrame, bg='white',text=READABLETEXT[44], font=('', 15)) - LabelFileName = tk.Label(UpRightFrame, bg='white',text=READABLETEXT[45], font=('', 15)) + LabelInstrument = tk.Label(UpRightFrame, bg='white', text=READABLETEXT[44], font=('', 15)) + LabelFileName = tk.Label(UpRightFrame, bg='white', text=READABLETEXT[45], font=('', 15)) # 绑定按钮 LabelEntityName.bind('', changeEntityName) LabelScoreboardName.bind('', changeScoreboardName) @@ -1331,21 +1282,20 @@ def __main__(): LabelFileName.pack() # 按钮:删除选中音轨 tk.Button(UpRightFrame, text=READABLETEXT[102], command=DelNowMusic).pack() - #装入窗口 + # 装入窗口 UpRightFrame.pack(side='left') - #上半部分框容器装入窗口 + # 上半部分框容器装入窗口 UpFrame.pack() - - # 下半部分框容器 DownFrame = tk.Frame(root, bg='blue') - #经典名言语录 + # 经典名言语录 import random - texts = open('./resources/myWords.txt','r',encoding='utf-8').readlines() - tk.Label(DownFrame,text=texts[random.randint(0,len(texts)-1)].replace('\n','').replace('\\n','\n'),fg='white',bg='black',font=('DengXian Light',20)).pack(fill='x') + texts = open('./resources/myWords.txt', 'r', encoding='utf-8').readlines() + tk.Label(DownFrame, text=texts[random.randint(0, len(texts) - 1)].replace('\n', '').replace('\\n', '\n'), + fg='white', bg='black', font=('DengXian Light', 20)).pack(fill='x') del texts # 音符列表菜单 @@ -1354,42 +1304,45 @@ def __main__(): ListNoteList.bind('', NoteList_selected) # 设置选中响应函数 ListNoteList.pack(side='left') # 音符列表滑块 - tk.Scrollbar(DownFrame,command=ListNoteList.yview).pack(side='left',fill='y') - + tk.Scrollbar(DownFrame, command=ListNoteList.yview).pack(side='left', fill='y') # 指令列表菜单 - ListCMDList = tk.Text(DownFrame,height=37,width=40) + ListCMDList = tk.Text(DownFrame, height=37, width=40) ListCMDList.pack(side='left') # 指令列表滑块 - tk.Scrollbar(DownFrame,command=ListCMDList.yview).pack(fill='y',side='left') + tk.Scrollbar(DownFrame, command=ListCMDList.yview).pack(fill='y', side='left') # 下半部分容器载入窗口 DownFrame.pack() - RefreshMain() - # 将菜单添加到主窗口中 root.config(menu=main_menu_bar) print('完成!') - log('启动root.mainloop(窗口)') - if len(sys.argv) != 1: - log('初始化打开音·创项目'+sys.argv[1]) + log('初始化打开音·创项目' + sys.argv[1]) global is_save + global dataset is_save = True + error = True try: with open(sys.argv[1], 'r', encoding='UTF-8') as c: dataset[0] = json.load(c) - except: + error = False + except OSError: print(READABLETEXT[8].format(sys.argv[1])) - log('无法打开'+sys.argv[1]) + log('无法打开' + sys.argv[1]) return + finally: + if error is True: + print(READABLETEXT[8].format(sys.argv[1])) + log('无法打开' + sys.argv[1]) + return global is_new_file global ProjectName is_new_file = False @@ -1398,7 +1351,6 @@ def __main__(): RefreshMain() RefreshMusic(NowMusic) - # 进入窗口消息循环 root.mainloop() log('退出') @@ -1409,5 +1361,3 @@ def __main__(): if __name__ == '__main__': __main__() - - diff --git a/languages/__pycache__/__init__.cpython-39.pyc b/languages/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000..f925bdd Binary files /dev/null and b/languages/__pycache__/__init__.cpython-39.pyc differ diff --git a/languages/__pycache__/enGB.cpython-39.pyc b/languages/__pycache__/enGB.cpython-39.pyc new file mode 100644 index 0000000..81ade0e Binary files /dev/null and b/languages/__pycache__/enGB.cpython-39.pyc differ diff --git a/languages/__pycache__/lang.cpython-39.pyc b/languages/__pycache__/lang.cpython-39.pyc new file mode 100644 index 0000000..8ae2ac3 Binary files /dev/null and b/languages/__pycache__/lang.cpython-39.pyc differ diff --git a/languages/__pycache__/zhCN.cpython-39.pyc b/languages/__pycache__/zhCN.cpython-39.pyc new file mode 100644 index 0000000..8ed1447 Binary files /dev/null and b/languages/__pycache__/zhCN.cpython-39.pyc differ diff --git a/languages/lang.py b/languages/lang.py index cb1f436..af3b636 100644 --- a/languages/lang.py +++ b/languages/lang.py @@ -1,15 +1,14 @@ # -*- coding:utf-8 -*- -DEFAULTLANGUAGE = 'en-GB' - +DEFAULTLANGUAGE = 'zh-CN' LANGUAGELIST = { - 'zh-CN':( + 'zh-CN': ( "简体中文 中国大陆", "Simplified Chinese, China Mainland", ), - 'en-GB':( + 'en-GB': ( "英式英语 大不列颠", "British English, Great Britain", ), @@ -19,5 +18,3 @@ if DEFAULTLANGUAGE == 'zh-CN': from languages.zhCN import READABLETEXT elif DEFAULTLANGUAGE == 'en-GB': from languages.enGB import READABLETEXT - - diff --git a/languages/zhCN.py b/languages/zhCN.py index e3d4ef0..82661dc 100644 --- a/languages/zhCN.py +++ b/languages/zhCN.py @@ -4,158 +4,156 @@ # 请在所需翻译文件前from 此文件 import READABLETEXT - - READABLETEXT = { - 'Translator':(("金羿 Eilles 原稿",True),), + 'Translator': (("金羿 Eilles 原稿", True),), # 此处是语言翻译者列表,其中每个元组第一项为显示文本,第二项为此文本是否为开发者名字 - 0:"错误❌", - 1:"提示❗", - 2:"清除log(此句不载入日志)", - 3:"无法清除日志及临时文件", - 4:"已存储", - 5:"新建 音·创 项目", - 6:"请选择旧类型的项目", - 7:"请选择 音·创 项目", - 8:"无法打开文件:{},请查看您是否输入正确", - 9:"音·创 - 关于", - 10:"音·创 Musicreater", - 11:"当前版本:{}", - 12:"""凌云我的世界开发团队\n×\n凌云计算机应用软件开发团队""", - 13:"确定", - 14:"请输入音符", - 15:(("- 开发者 -",False),("金羿 Eilles",True),("EillesWan@outlook.com",False),("QQ 2647547478",False)), + 0: "错误❌", + 1: "提示❗", + 2: "清除log(此句不载入日志)", + 3: "无法清除日志及临时文件", + 4: "已存储", + 5: "新建 音·创 项目", + 6: "请选择旧类型的项目", + 7: "请选择 音·创 项目", + 8: "无法打开文件:{},请查看您是否输入正确", + 9: "音·创 - 关于", + 10: "音·创 Musicreater", + 11: "当前版本:{}", + 12: """凌云我的世界开发团队\n×\n凌云计算机应用软件开发团队""", + 13: "确定", + 14: "请输入音符", + 15: (("- 开发者 -", False), ("金羿 Eilles", True), ("EillesWan@outlook.com", False), ("QQ 2647547478", False)), # 此处是开发者列表,其中每个元组第一项为显示文本,第二项为此文本是否为开发者名字 - 16:"- 翻译者 -", + 16: "- 翻译者 -", # 17:"", - 18:"讨论群: 861684859", - 19:"音·创 - 帮助", - 20:"请选择钢琴声音的音乐文件", - 21:"请选择 MIDI 文件", - 22:"请选择 音符文本 文件", - 23:"获取音符信息", - 24:"音符数据写入{}", - 25:"请选择文件生成的位置", - 26:"请选择文件夹生成的位置", - 27:"请选择.mcpack文件生成的位置", - 28:"坐标信息输入", - 29:"请选择世界文件夹生成的位置", - 30:"请选择函数包生成的位置", - 31:"请选择 .mcfunction 文件", - 32:"请选择需要生成的.bdx文件", - 33:"完成✔", - 34:"输入播放速度", - 35:"创建中", - 36:"请选择世界文件夹所在的位置", - 37:"请确认", - 38:"生成.RyStruct文件", - 39:"失败❌", - 40:"邮件反馈信息输入", - 41:"音·创 - 金羿 - {}", - 42:"执行实体名:{}", - 43:"使用计分板:{}", - 44:"所用的乐器:{}", - 45:"当前音轨名:{}", - 46:"包名:{}", - 47:"音乐标题:{}", - 48:"是否重复:{}", - 49:"玩家选择器:{}", - 50:"修改主设置", - 51:"修改节设置", - 52:"游戏内置乐器如下:请输入英文\n", - 53:"打开音·创项目...", - 54:"打开旧项目...", - 55:"保存项目", - 56:"另存为...", - 57:"退出", - 58:"文件", - 59:"从钢琴MP3导入音轨", - 60:"从midi导入音轨", - 61:"从文本文件导入音轨", - 62:"输入音符至音轨", - 63:"编辑", - 64:"生成文件至...", - 65:"生成函数包至...", - 66:"生成附加包文件至...", - 67:"函数(包)", - 68:"将音乐以方块存储生成地图", - 69:"将音乐以方块存储载入地图…", - 70:"将音乐以指令存储生成地图", - 71:"将音乐以指令存储载入地图…", - 72:"将音乐以音符盒存储生成地图", - 73:"将音乐以音符盒存储载入地图…", - 74:"世界", - 75:"生成符合当前音乐的函数播放器…", - 76:"将选中音轨以指令存储生成.bdx文件…", - 77:"由地图导出至.bdx文件…", - 78:"由地图导出至.RyStruct文件…", - 79:"将函数载入世界…", - 80:"将大函数分割并建立执行链…", - 81:"辅助功能", - 82:"展示生成结果", - 83:"建立位于localhost:8080上的websocket服务器播放选中音轨", - 84:"实验性功能", - 85:"清除日志文件", - 86:"清除早期版本的存储文件", - 87:"帮助", - 88:"关于", - 89:"发送错误日志反馈", - 90:"帮助与疑问", - 91:"音乐总设置(项目设置)", + 18: "讨论群: 861684859", + 19: "音·创 - 帮助", + 20: "请选择钢琴声音的音乐文件", + 21: "请选择 MIDI 文件", + 22: "请选择 音符文本 文件", + 23: "获取音符信息", + 24: "音符数据写入{}", + 25: "请选择文件生成的位置", + 26: "请选择文件夹生成的位置", + 27: "请选择.mcpack文件生成的位置", + 28: "坐标信息输入", + 29: "请选择世界文件夹生成的位置", + 30: "请选择函数包生成的位置", + 31: "请选择 .mcfunction 文件", + 32: "请选择需要生成的.bdx文件", + 33: "完成✔", + 34: "输入播放速度", + 35: "创建中", + 36: "请选择世界文件夹所在的位置", + 37: "请确认", + 38: "生成.RyStruct文件", + 39: "失败❌", + 40: "邮件反馈信息输入", + 41: "音·创 - 金羿 - {}", + 42: "执行实体名:{}", + 43: "使用计分板:{}", + 44: "所用的乐器:{}", + 45: "当前音轨名:{}", + 46: "包名:{}", + 47: "音乐标题:{}", + 48: "是否重复:{}", + 49: "玩家选择器:{}", + 50: "修改主设置", + 51: "修改节设置", + 52: "游戏内置乐器如下:请输入英文\n", + 53: "打开音·创项目...", + 54: "打开旧项目...", + 55: "保存项目", + 56: "另存为...", + 57: "退出", + 58: "文件", + 59: "从钢琴MP3导入音轨", + 60: "从midi导入音轨", + 61: "从文本文件导入音轨", + 62: "输入音符至音轨", + 63: "编辑", + 64: "生成文件至...", + 65: "生成函数包至...", + 66: "生成附加包文件至...", + 67: "函数(包)", + 68: "将音乐以方块存储生成地图", + 69: "将音乐以方块存储载入地图…", + 70: "将音乐以指令存储生成地图", + 71: "将音乐以指令存储载入地图…", + 72: "将音乐以音符盒存储生成地图", + 73: "将音乐以音符盒存储载入地图…", + 74: "世界", + 75: "生成符合当前音乐的函数播放器…", + 76: "将选中音轨以指令存储生成.bdx文件…", + 77: "由地图导出至.bdx文件…", + 78: "由地图导出至.RyStruct文件…", + 79: "将函数载入世界…", + 80: "将大函数分割并建立执行链…", + 81: "辅助功能", + 82: "展示生成结果", + 83: "建立位于localhost:8080上的websocket服务器播放选中音轨", + 84: "实验性功能", + 85: "清除日志文件", + 86: "清除早期版本的存储文件", + 87: "帮助", + 88: "关于", + 89: "发送错误日志反馈", + 90: "帮助与疑问", + 91: "音乐总设置(项目设置)", # 92:"", # 93:"", # 94:"", # 95:"", - 96:"重置项目设置", - 97:"当前音轨设置(段落设置)", + 96: "重置项目设置", + 97: "当前音轨设置(段落设置)", # 98:"", # 99:"", # 100:"", # 101:"", - 102:"删除选中音轨", + 102: "删除选中音轨", # 103:"", # 104:"", - 105:"找不到或无法读取文件😢:{}", - 106:"您当前的项目已修改但未存储,是否先保存当前项目?", - 107:"项目已经存储至:{}", - 108:"音·创工程文件", - 109:"任意类型", - 110:"函数音创工程文件", - 111:"MMFM0.0.6版本工程文件", - 112:"全部类型", - 113:"钢琴声音的音频文件", - 114:"Midi文件", - 115:"文本文件", - 116:"请输入坐标:", - 117:"您输入的格式有误,请重新输入!", - 118:"我的世界指令函数文件", - 119:"请输入执行链生成坐标:", - 120:"您输入的格式有误,请重新输入。", - 121:"您的函数文件不大于一万条指令,无需进行分割操作。", - 122:"请输入执行链生成相对坐标:", - 123:"FastBuilder结构文件", - 124:"转换结束!\n{}", - 125:"一秒,音乐走几拍?", - 126:"按下确认后,在游戏中使用connect指令连接localhost:8080,即可播放", - 127:"请输入区域选择的开始坐标:", - 128:"请输入区域选择的结束坐标:", - 129:"所选区块导出时是否需要保留空气方块?", - 130:"音·创结构文件", - 131:"文件已生成\n{}", - 132:"文件无法生成\n{}\n{}", - 133:"本功能尚未开发。", - 134:"您的称呼", - 135:"您的联系方式", - 136:"您对问题的描述", - 137:"在程序结束后将清除日志及临时文件信息。", - 138:"在程序结束后将不会清除日志及临时文件信息。", - 139:"修改包名", - 140:"修改音乐标题", - 141:"修改玩家选择器\n注意!要加上中括号“[]”", - 142:"修改本音轨的执行实体名", - 143:"修改本音轨所用的积分板", - 144:"修改本音轨所用乐器", - 145:"您输入的乐器并非游戏内置乐器,是否继续用您输入的字符作为乐器?", - 146:"修改本音轨生成的文件名", + 105: "找不到或无法读取文件😢:{}", + 106: "您当前的项目已修改但未存储,是否先保存当前项目?", + 107: "项目已经存储至:{}", + 108: "音·创工程文件", + 109: "任意类型", + 110: "函数音创工程文件", + 111: "MMFM0.0.6版本工程文件", + 112: "全部类型", + 113: "钢琴声音的音频文件", + 114: "Midi文件", + 115: "文本文件", + 116: "请输入坐标:", + 117: "您输入的格式有误,请重新输入!", + 118: "我的世界指令函数文件", + 119: "请输入执行链生成坐标:", + 120: "您输入的格式有误,请重新输入。", + 121: "您的函数文件不大于一万条指令,无需进行分割操作。", + 122: "请输入执行链生成相对坐标:", + 123: "FastBuilder结构文件", + 124: "转换结束!\n{}", + 125: "一秒,音乐走几拍?", + 126: "按下确认后,在游戏中使用connect指令连接localhost:8080,即可播放", + 127: "请输入区域选择的开始坐标:", + 128: "请输入区域选择的结束坐标:", + 129: "所选区块导出时是否需要保留空气方块?", + 130: "音·创结构文件", + 131: "文件已生成\n{}", + 132: "文件无法生成\n{}\n{}", + 133: "本功能尚未开发。", + 134: "您的称呼", + 135: "您的联系方式", + 136: "您对问题的描述", + 137: "在程序结束后将清除日志及临时文件信息。", + 138: "在程序结束后将不会清除日志及临时文件信息。", + 139: "修改包名", + 140: "修改音乐标题", + 141: "修改玩家选择器\n注意!要加上中括号“[]”", + 142: "修改本音轨的执行实体名", + 143: "修改本音轨所用的积分板", + 144: "修改本音轨所用乐器", + 145: "您输入的乐器并非游戏内置乐器,是否继续用您输入的字符作为乐器?", + 146: "修改本音轨生成的文件名", -} \ No newline at end of file +} diff --git a/log/2022-01-18 21_43_16.msct.log b/log/2022-01-18 21_43_16.msct.log new file mode 100644 index 0000000..0d2ae65 --- /dev/null +++ b/log/2022-01-18 21_43_16.msct.log @@ -0,0 +1,6 @@ +21:43:16 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\框架\v0.1.0-not my updata\Musicreater.py +21:43:16 启动root.mainloop(窗口) +21:44:19 发送错误报告 +21:44:19 添加标题与正文 +21:44:55 退出 +21:44:55 程序正常退出 diff --git a/log/2022-01-18 21_45_55.msct.log b/log/2022-01-18 21_45_55.msct.log new file mode 100644 index 0000000..6c36efb --- /dev/null +++ b/log/2022-01-18 21_45_55.msct.log @@ -0,0 +1,7903 @@ +21:45:55 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\框架\v0.1.0-not my updata\Musicreater.py +21:45:55 启动root.mainloop(窗口) +21:47:11 刷新音轨0 +21:47:13 刷新音轨0 +21:48:01 从midi导入音乐 +21:48:21 元信息MetaMessage('set_tempo', tempo=500000, time=0) +21:48:21 元信息MetaMessage('time_signature', numerator=4, denominator=4, clocks_per_click=24, notated_32nd_notes_per_beat=8, time=0) +21:48:21 元信息MetaMessage('end_of_track', time=1) +21:48:21 音符增加[] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=53', '426'] +21:48:21 延续时间426tick--:添加音符[1.5, 0.8875] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=35', '2'] +21:48:21 延续时间2tick--:添加音符[0.75, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=38', '1'] +21:48:21 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=58', '359'] +21:48:21 延续时间359tick--:添加音符[2.24, 0.7479166666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=48', '1'] +21:48:21 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '348'] +21:48:21 延续时间348tick--:添加音符[2.24, 0.725] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '8'] +21:48:21 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=66', '2'] +21:48:21 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=47', '2'] +21:48:21 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=67', '152'] +21:48:21 延续时间152tick--:添加音符[2.0, 0.31666666666666665] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=57', '1'] +21:48:21 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '157'] +21:48:21 延续时间157tick--:添加音符[1.8, 0.32708333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[2.24, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=69', '6'] +21:48:21 延续时间6tick--:添加音符[1.8, 0.0125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=69', '1'] +21:48:21 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=79', '154'] +21:48:21 延续时间154tick--:添加音符[3.0, 0.32083333333333336] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '200'] +21:48:21 延续时间200tick--:添加音符[2.0, 0.4166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=66', '8'] +21:48:21 延续时间8tick--:添加音符[2.67, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=59', '3'] +21:48:21 延续时间3tick--:添加音符[2.0, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=39', '1'] +21:48:21 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=42', '7'] +21:48:21 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '14'] +21:48:21 延续时间14tick--:添加音符[0.75, 0.029166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[3.0, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.7, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '3'] +21:48:21 延续时间3tick--:添加音符[1.12, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '8'] +21:48:21 延续时间8tick--:添加音符[1.5, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.8, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '8'] +21:48:21 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=56', '91'] +21:48:21 延续时间91tick--:添加音符[1.7, 0.18958333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=54', '2'] +21:48:21 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '375'] +21:48:21 延续时间375tick--:添加音符[2.67, 0.78125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=58', '5'] +21:48:21 延续时间5tick--:添加音符[2.67, 0.010416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=38', '745'] +21:48:21 延续时间745tick--:添加音符[0.6, 1.5520833333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=56', '0'] +21:48:21 延续时间0tick--:添加音符[3.0, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=50', '3'] +21:48:21 延续时间3tick--:添加音符[1.8, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '5'] +21:48:21 延续时间5tick--:添加音符[2.0, 0.010416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[2.24, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '2'] +21:48:21 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.0, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.7, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=50', '115'] +21:48:21 延续时间115tick--:添加音符[0.75, 0.23958333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '162'] +21:48:21 延续时间162tick--:添加音符[1.8, 0.3375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=67', '6'] +21:48:21 延续时间6tick--:添加音符[1.8, 0.0125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=52', '4'] +21:48:21 延续时间4tick--:添加音符[0.84, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=61', '156'] +21:48:21 延续时间156tick--:添加音符[0.9, 0.325] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=77', '174'] +21:48:21 延续时间174tick--:添加音符[1.5, 0.3625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=61', '0'] +21:48:21 延续时间0tick--:添加音符[1.2, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=78', '154'] +21:48:21 延续时间154tick--:添加音符[1.7, 0.32083333333333336] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '151'] +21:48:21 延续时间151tick--:添加音符[1.8, 0.3145833333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=80', '4'] +21:48:21 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=79', '162'] +21:48:21 延续时间162tick--:添加音符[2.4, 0.3375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=70', '238'] +21:48:21 延续时间238tick--:添加音符[2.24, 0.49583333333333335] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=43', '3'] +21:48:21 延续时间3tick--:添加音符[0.44, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=38', '0'] +21:48:21 延续时间0tick--:添加音符[0.22, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=56', '4'] +21:48:21 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '7'] +21:48:21 延续时间7tick--:添加音符[1.8, 0.014583333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.9, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.6, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.75, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.5, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.7, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.2, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.84, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[3.0, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[2.4, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '142'] +21:48:21 延续时间142tick--:添加音符[0.22, 0.29583333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=61', '254'] +21:48:21 延续时间254tick--:添加音符[2.0, 0.5291666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=52', '79'] +21:48:21 延续时间79tick--:添加音符[1.8, 0.16458333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=48', '121'] +21:48:21 延续时间121tick--:添加音符[1.7, 0.2520833333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=40', '0'] +21:48:21 延续时间0tick--:添加音符[0.56, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=38', '1'] +21:48:21 延续时间1tick--:添加音符[1.4, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=30', '2'] +21:48:21 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '2'] +21:48:21 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[2.24, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.8, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.44, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=27', '596'] +21:48:21 延续时间596tick--:添加音符[0.37, 1.2416666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=39', '2'] +21:48:21 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=27', '3'] +21:48:21 延续时间3tick--:添加音符[0.75, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '55'] +21:48:21 延续时间55tick--:添加音符[1.7, 0.11458333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '8'] +21:48:21 延续时间8tick--:添加音符[0.84, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.4, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=50', '301'] +21:48:21 延续时间301tick--:添加音符[1.12, 0.6270833333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '326'] +21:48:21 延续时间326tick--:添加音符[1.12, 0.6791666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=57', '7'] +21:48:21 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '162'] +21:48:21 延续时间162tick--:添加音符[0.75, 0.3375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=54', '4'] +21:48:21 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=47', '1'] +21:48:21 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '164'] +21:48:21 延续时间164tick--:添加音符[1.12, 0.3416666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=62', '8'] +21:48:21 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=61', '165'] +21:48:21 延续时间165tick--:添加音符[1.5, 0.34375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '195'] +21:48:21 延续时间195tick--:添加音符[1.0, 0.40625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=45', '3'] +21:48:21 延续时间3tick--:添加音符[0.28, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=62', '1'] +21:48:21 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=48', '1'] +21:48:21 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '49'] +21:48:21 延续时间49tick--:添加音符[0.37, 0.10208333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '5'] +21:48:21 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '5'] +21:48:21 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '13'] +21:48:21 延续时间13tick--:添加音符[0.75, 0.027083333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '8'] +21:48:21 延续时间8tick--:添加音符[0.56, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=47', '195'] +21:48:21 延续时间195tick--:添加音符[1.12, 0.40625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=45', '0'] +21:48:21 延续时间0tick--:添加音符[0.84, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '335'] +21:48:21 延续时间335tick--:添加音符[1.0, 0.6979166666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.33, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=53', '4'] +21:48:21 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=29', '4'] +21:48:21 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '529'] +21:48:21 延续时间529tick--:添加音符[1.5, 1.1020833333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=60', '9'] +21:48:21 延续时间9tick--:添加音符[1.5, 0.01875] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '45'] +21:48:21 延续时间45tick--:添加音符[1.12, 0.09375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=46', '5'] +21:48:21 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '64'] +21:48:21 延续时间64tick--:添加音符[1.0, 0.13333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=43', '11'] +21:48:21 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '16'] +21:48:21 延续时间16tick--:添加音符[0.84, 0.03333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '3'] +21:48:21 延续时间3tick--:添加音符[1.33, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=38', '36'] +21:48:21 延续时间36tick--:添加音符[0.75, 0.075] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=26', '1'] +21:48:21 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=32', '0'] +21:48:21 延续时间0tick--:添加音符[0.3, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=29', '1'] +21:48:21 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '6'] +21:48:21 延续时间6tick--:添加音符[0.6, 0.0125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=29', '864'] +21:48:21 延续时间864tick--:添加音符[0.67, 1.8] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '158'] +21:48:21 延续时间158tick--:添加音符[0.75, 0.32916666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=26', '7'] +21:48:21 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=36', '189'] +21:48:21 延续时间189tick--:添加音符[0.9, 0.39375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '265'] +21:48:21 延续时间265tick--:添加音符[1.5, 0.5520833333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=36', '8'] +21:48:21 延续时间8tick--:添加音符[1.5, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=39', '3'] +21:48:21 延续时间3tick--:添加音符[2.24, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=41', '0'] +21:48:21 延续时间0tick--:添加音符[1.33, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '4'] +21:48:21 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1221'] +21:48:21 延续时间1221tick--:添加音符[1.5, 2.54375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=48', '10'] +21:48:21 延续时间10tick--:添加音符[1.5, 0.020833333333333332] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=71', '179'] +21:48:21 延续时间179tick--:添加音符[1.7, 0.3729166666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '257'] +21:48:21 延续时间257tick--:添加音符[0.9, 0.5354166666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=67', '6'] +21:48:21 延续时间6tick--:添加音符[1.8, 0.0125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=49', '4'] +21:48:21 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=25', '1'] +21:48:21 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '255'] +21:48:21 延续时间255tick--:添加音符[1.0, 0.53125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.75, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.3, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.5, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.33, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '3'] +21:48:21 延续时间3tick--:添加音符[1.7, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '73'] +21:48:21 延续时间73tick--:添加音符[1.12, 0.15208333333333332] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '353'] +21:48:21 延续时间353tick--:添加音符[1.8, 0.7354166666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=59', '4'] +21:48:21 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=73', '176'] +21:48:21 延续时间176tick--:添加音符[1.7, 0.36666666666666664] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=68', '172'] +21:48:21 延续时间172tick--:添加音符[1.5, 0.35833333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=68', '152'] +21:48:21 延续时间152tick--:添加音符[1.12, 0.31666666666666665] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=42', '229'] +21:48:21 延续时间229tick--:添加音符[0.28, 0.47708333333333336] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=57', '2'] +21:48:21 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=37', '6'] +21:48:21 延续时间6tick--:添加音符[0.84, 0.0125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.5, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.8, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '13'] +21:48:21 延续时间13tick--:添加音符[0.9, 0.027083333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '154'] +21:48:21 延续时间154tick--:添加音符[1.33, 0.32083333333333336] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=63', '4'] +21:48:21 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '218'] +21:48:21 延续时间218tick--:添加音符[1.33, 0.45416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=51', '6'] +21:48:21 延续时间6tick--:添加音符[1.33, 0.0125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '471'] +21:48:21 延续时间471tick--:添加音符[1.33, 0.98125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=53', '5'] +21:48:21 延续时间5tick--:添加音符[1.33, 0.010416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '87'] +21:48:21 延续时间87tick--:添加音符[1.7, 0.18125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=42', '85'] +21:48:21 延续时间85tick--:添加音符[0.9, 0.17708333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=59', '210'] +21:48:21 延续时间210tick--:添加音符[1.5, 0.4375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=37', '0'] +21:48:21 延续时间0tick--:添加音符[0.3, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=26', '3'] +21:48:21 延续时间3tick--:添加音符[0.75, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '112'] +21:48:21 延续时间112tick--:添加音符[1.33, 0.23333333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.28, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '5'] +21:48:21 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '545'] +21:48:21 延续时间545tick--:添加音符[1.5, 1.1354166666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=35', '9'] +21:48:21 延续时间9tick--:添加音符[0.37, 0.01875] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=63', '1'] +21:48:21 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=51', '178'] +21:48:21 延续时间178tick--:添加音符[0.42, 0.37083333333333335] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=78', '0'] +21:48:21 延续时间0tick--:添加音符[1.33, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=72', '160'] +21:48:21 延续时间160tick--:添加音符[1.2, 0.3333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=52', '2'] +21:48:21 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=68', '160'] +21:48:21 延续时间160tick--:添加音符[1.12, 0.3333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '204'] +21:48:21 延续时间204tick--:添加音符[0.44, 0.425] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=58', '9'] +21:48:21 延续时间9tick--:添加音符[0.67, 0.01875] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=49', '0'] +21:48:21 延续时间0tick--:添加音符[0.22, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=50', '2'] +21:48:21 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=47', '2'] +21:48:21 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.33, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.2, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.42, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '7'] +21:48:21 延续时间7tick--:添加音符[0.9, 0.014583333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=52', '150'] +21:48:21 延续时间150tick--:添加音符[1.12, 0.3125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '180'] +21:48:21 延续时间180tick--:添加音符[1.12, 0.375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=46', '8'] +21:48:21 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '176'] +21:48:21 延续时间176tick--:添加音符[0.67, 0.36666666666666664] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=31', '4'] +21:48:21 延续时间4tick--:添加音符[0.5, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=36', '2'] +21:48:21 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '340'] +21:48:21 延续时间340tick--:添加音符[0.56, 0.7083333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=35', '4'] +21:48:21 延续时间4tick--:添加音符[0.56, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '134'] +21:48:21 延续时间134tick--:添加音符[1.12, 0.2791666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=57', '5'] +21:48:21 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '210'] +21:48:21 延续时间210tick--:添加音符[0.44, 0.4375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=62', '4'] +21:48:21 延续时间4tick--:添加音符[1.2, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=49', '3'] +21:48:21 延续时间3tick--:添加音符[0.44, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=47', '2'] +21:48:21 延续时间2tick--:添加音符[0.25, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=47', '2'] +21:48:21 延续时间2tick--:添加音符[0.3, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '2'] +21:48:21 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.12, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.5, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=58', '28'] +21:48:21 延续时间28tick--:添加音符[1.12, 0.058333333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=70', '176'] +21:48:21 延续时间176tick--:添加音符[1.0, 0.36666666666666664] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '150'] +21:48:21 延续时间150tick--:添加音符[1.12, 0.3125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=86', '4'] +21:48:21 延续时间4tick--:添加音符[1.12, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '172'] +21:48:21 延续时间172tick--:添加音符[1.2, 0.35833333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=87', '6'] +21:48:21 延续时间6tick--:添加音符[1.2, 0.0125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '155'] +21:48:21 延续时间155tick--:添加音符[1.12, 0.3229166666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=74', '9'] +21:48:21 延续时间9tick--:添加音符[1.12, 0.01875] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '160'] +21:48:21 延续时间160tick--:添加音符[1.2, 0.3333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=75', '5'] +21:48:21 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=79', '166'] +21:48:21 延续时间166tick--:添加音符[2.0, 0.3458333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '229'] +21:48:21 延续时间229tick--:添加音符[1.0, 0.47708333333333336] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=68', '1'] +21:48:21 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=45', '2'] +21:48:21 延续时间2tick--:添加音符[0.37, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=52', '2'] +21:48:21 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '130'] +21:48:21 延续时间130tick--:添加音符[1.2, 0.2708333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.12, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.25, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=72', '119'] +21:48:21 延续时间119tick--:添加音符[1.8, 0.24791666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '172'] +21:48:21 延续时间172tick--:添加音符[1.7, 0.35833333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=72', '11'] +21:48:21 延续时间11tick--:添加音符[1.7, 0.022916666666666665] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=51', '186'] +21:48:21 延续时间186tick--:添加音符[0.9, 0.3875] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '16'] +21:48:21 延续时间16tick--:添加音符[1.0, 0.03333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=63', '228'] +21:48:21 延续时间228tick--:添加音符[1.5, 0.475] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '140'] +21:48:21 延续时间140tick--:添加音符[0.44, 0.2916666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '39'] +21:48:21 延续时间39tick--:添加音符[1.7, 0.08125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=53', '9'] +21:48:21 延续时间9tick--:添加音符[1.7, 0.01875] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '206'] +21:48:21 延续时间206tick--:添加音符[1.5, 0.42916666666666664] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '7'] +21:48:21 延续时间7tick--:添加音符[1.8, 0.014583333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '4'] +21:48:21 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=53', '1'] +21:48:21 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=50', '3'] +21:48:21 延续时间3tick--:添加音符[1.8, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '2'] +21:48:21 延续时间2tick--:添加音符[0.37, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '4'] +21:48:21 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=69', '19'] +21:48:21 延续时间19tick--:添加音符[1.7, 0.03958333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=61', '1'] +21:48:21 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '149'] +21:48:21 延续时间149tick--:添加音符[1.5, 0.3104166666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=74', '11'] +21:48:21 延续时间11tick--:添加音符[1.5, 0.022916666666666665] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=62', '1'] +21:48:21 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '157'] +21:48:21 延续时间157tick--:添加音符[1.7, 0.32708333333333334] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '8'] +21:48:21 延续时间8tick--:添加音符[1.33, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=68', '3'] +21:48:21 延续时间3tick--:添加音符[1.7, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=77', '1'] +21:48:21 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '195'] +21:48:21 延续时间195tick--:添加音符[1.5, 0.40625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.8, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=66', '6'] +21:48:21 延续时间6tick--:添加音符[1.8, 0.0125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '1'] +21:48:21 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '362'] +21:48:21 延续时间362tick--:添加音符[1.7, 0.7541666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=59', '11'] +21:48:21 延续时间11tick--:添加音符[1.7, 0.022916666666666665] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '189'] +21:48:21 延续时间189tick--:添加音符[1.5, 0.39375] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=60', '4'] +21:48:21 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '272'] +21:48:21 延续时间272tick--:添加音符[1.7, 0.5666666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=62', '8'] +21:48:21 延续时间8tick--:添加音符[1.7, 0.016666666666666666] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=36', '2'] +21:48:21 延续时间2tick--:添加音符[0.28, 0.004166666666666667] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=43', '6'] +21:48:21 延续时间6tick--:添加音符[1.12, 0.0125] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=26', '3'] +21:48:21 延续时间3tick--:添加音符[0.75, 0.00625] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '160'] +21:48:21 延续时间160tick--:添加音符[1.33, 0.3333333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.5, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '1'] +21:48:21 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[1.8, 1.0] +21:48:21 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:21 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.3, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=30', '455'] +21:48:22 延续时间455tick--:添加音符[0.7, 0.9479166666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=24', '2'] +21:48:22 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=45', '386'] +21:48:22 延续时间386tick--:添加音符[1.5, 0.8041666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '163'] +21:48:22 延续时间163tick--:添加音符[1.7, 0.33958333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=49', '9'] +21:48:22 延续时间9tick--:添加音符[1.7, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=37', '258'] +21:48:22 延续时间258tick--:添加音符[0.19, 0.5375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=51', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=37', '3'] +21:48:22 延续时间3tick--:添加音符[1.12, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '19'] +21:48:22 延续时间19tick--:添加音符[0.28, 0.03958333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '6'] +21:48:22 延续时间6tick--:添加音符[0.7, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.56, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=43', '475'] +21:48:22 延续时间475tick--:添加音符[0.56, 0.9895833333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '170'] +21:48:22 延续时间170tick--:添加音符[1.8, 0.3541666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=61', '6'] +21:48:22 延续时间6tick--:添加音符[1.8, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=46', '5'] +21:48:22 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=46', '1'] +21:48:22 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '43'] +21:48:22 延续时间43tick--:添加音符[0.19, 0.08958333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=64', '82'] +21:48:22 延续时间82tick--:添加音符[1.7, 0.17083333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=57', '5'] +21:48:22 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=66', '179'] +21:48:22 延续时间179tick--:添加音符[1.5, 0.3729166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=51', '4'] +21:48:22 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '137'] +21:48:22 延续时间137tick--:添加音符[1.12, 0.28541666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=58', '8'] +21:48:22 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '207'] +21:48:22 延续时间207tick--:添加音符[0.84, 0.43125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=47', '4'] +21:48:22 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=59', '1'] +21:48:22 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=49', '5'] +21:48:22 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=38', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '30'] +21:48:22 延续时间30tick--:添加音符[1.5, 0.0625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '238'] +21:48:22 延续时间238tick--:添加音符[1.33, 0.49583333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=57', '12'] +21:48:22 延续时间12tick--:添加音符[1.33, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '157'] +21:48:22 延续时间157tick--:添加音符[1.33, 0.32708333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=65', '12'] +21:48:22 延续时间12tick--:添加音符[1.33, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=52', '0'] +21:48:22 延续时间0tick--:添加音符[0.67, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '165'] +21:48:22 延续时间165tick--:添加音符[0.84, 0.34375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=47', '5'] +21:48:22 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '348'] +21:48:22 延续时间348tick--:添加音符[1.33, 0.725] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=56', '8'] +21:48:22 延续时间8tick--:添加音符[1.33, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=43', '158'] +21:48:22 延续时间158tick--:添加音符[0.9, 0.32916666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=42', '243'] +21:48:22 延续时间243tick--:添加音符[0.15, 0.50625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=57', '3'] +21:48:22 延续时间3tick--:添加音符[1.5, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=37', '7'] +21:48:22 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '42'] +21:48:22 延续时间42tick--:添加音符[0.28, 0.0875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '12'] +21:48:22 延续时间12tick--:添加音符[1.0, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.67, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=53', '359'] +21:48:22 延续时间359tick--:添加音符[0.44, 0.7479166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '86'] +21:48:22 延续时间86tick--:添加音符[0.75, 0.17916666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=60', '8'] +21:48:22 延续时间8tick--:添加音符[0.75, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '23'] +21:48:22 延续时间23tick--:添加音符[0.9, 0.04791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=68', '11'] +21:48:22 延续时间11tick--:添加音符[0.9, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=50', '24'] +21:48:22 延续时间24tick--:添加音符[0.6, 0.05] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '19'] +21:48:22 延续时间19tick--:添加音符[1.5, 0.03958333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=81', '5'] +21:48:22 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=80', '98'] +21:48:22 延续时间98tick--:添加音符[1.33, 0.20416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=75', '167'] +21:48:22 延续时间167tick--:添加音符[1.2, 0.34791666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=55', '3'] +21:48:22 延续时间3tick--:添加音符[0.67, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=81', '149'] +21:48:22 延续时间149tick--:添加音符[1.12, 0.3104166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '182'] +21:48:22 延续时间182tick--:添加音符[0.15, 0.37916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.44, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.67, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=66', '6'] +21:48:22 延续时间6tick--:添加音符[1.12, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=56', '3'] +21:48:22 延续时间3tick--:添加音符[0.67, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=47', '0'] +21:48:22 延续时间0tick--:添加音符[0.44, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=49', '2'] +21:48:22 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=45', '1'] +21:48:22 延续时间1tick--:添加音符[0.33, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=48', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=42', '1'] +21:48:22 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[1.2, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '13'] +21:48:22 延续时间13tick--:添加音符[0.75, 0.027083333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '245'] +21:48:22 延续时间245tick--:添加音符[1.12, 0.5104166666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=69', '8'] +21:48:22 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '161'] +21:48:22 延续时间161tick--:添加音符[0.5, 0.33541666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=57', '8'] +21:48:22 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=43', '3'] +21:48:22 延续时间3tick--:添加音符[0.5, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '158'] +21:48:22 延续时间158tick--:添加音符[0.67, 0.32916666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=61', '9'] +21:48:22 延续时间9tick--:添加音符[0.67, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '183'] +21:48:22 延续时间183tick--:添加音符[0.56, 0.38125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=46', '12'] +21:48:22 延续时间12tick--:添加音符[0.56, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '311'] +21:48:22 延续时间311tick--:添加音符[1.12, 0.6479166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=62', '11'] +21:48:22 延续时间11tick--:添加音符[1.12, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '166'] +21:48:22 延续时间166tick--:添加音符[0.9, 0.3458333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=60', '7'] +21:48:22 延续时间7tick--:添加音符[1.2, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.44, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=48', '4'] +21:48:22 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=43', '0'] +21:48:22 延续时间0tick--:添加音符[0.6, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=50', '3'] +21:48:22 延续时间3tick--:添加音符[0.44, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[0.67, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '19'] +21:48:22 延续时间19tick--:添加音符[0.5, 0.03958333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '15'] +21:48:22 延续时间15tick--:添加音符[0.33, 0.03125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=50', '112'] +21:48:22 延续时间112tick--:添加音符[1.12, 0.23333333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=59', '180'] +21:48:22 延续时间180tick--:添加音符[1.0, 0.375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '130'] +21:48:22 延续时间130tick--:添加音符[1.12, 0.2708333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=70', '11'] +21:48:22 延续时间11tick--:添加音符[0.5, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=71', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '174'] +21:48:22 延续时间174tick--:添加音符[1.2, 0.3625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=81', '10'] +21:48:22 延续时间10tick--:添加音符[1.2, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=60', '1'] +21:48:22 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '150'] +21:48:22 延续时间150tick--:添加音符[0.6, 0.3125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=62', '6'] +21:48:22 延续时间6tick--:添加音符[0.6, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=85', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '161'] +21:48:22 延续时间161tick--:添加音符[0.9, 0.33541666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=78', '5'] +21:48:22 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=55', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=85', '160'] +21:48:22 延续时间160tick--:添加音符[2.0, 0.3333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=47', '189'] +21:48:22 延续时间189tick--:添加音符[0.19, 0.39375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '53'] +21:48:22 延续时间53tick--:添加音符[1.0, 0.11041666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=76', '8'] +21:48:22 延续时间8tick--:添加音符[1.7, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=44', '2'] +21:48:22 延续时间2tick--:添加音符[0.37, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=59', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '52'] +21:48:22 延续时间52tick--:添加音符[0.44, 0.10833333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.6, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=73', '233'] +21:48:22 延续时间233tick--:添加音符[1.8, 0.48541666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=59', '1'] +21:48:22 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '158'] +21:48:22 延续时间158tick--:添加音符[1.0, 0.32916666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=75', '6'] +21:48:22 延续时间6tick--:添加音符[1.7, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=59', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=67', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '147'] +21:48:22 延续时间147tick--:添加音符[0.37, 0.30625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=59', '10'] +21:48:22 延续时间10tick--:添加音符[0.37, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=67', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=83', '166'] +21:48:22 延续时间166tick--:添加音符[0.75, 0.3458333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '153'] +21:48:22 延续时间153tick--:添加音符[0.56, 0.31875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=76', '5'] +21:48:22 延续时间5tick--:添加音符[0.56, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '133'] +21:48:22 延续时间133tick--:添加音符[1.0, 0.27708333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=84', '9'] +21:48:22 延续时间9tick--:添加音符[1.0, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=57', '99'] +21:48:22 延续时间99tick--:添加音符[0.15, 0.20625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=94', '104'] +21:48:22 延续时间104tick--:添加音符[1.5, 0.21666666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=75', '0'] +21:48:22 延续时间0tick--:添加音符[0.3, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '14'] +21:48:22 延续时间14tick--:添加音符[0.37, 0.029166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +21:48:22 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[0.19, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '208'] +21:48:22 延续时间208tick--:添加音符[0.3, 0.43333333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=72', '11'] +21:48:22 延续时间11tick--:添加音符[0.3, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=78', '0'] +21:48:22 延续时间0tick--:添加音符[0.44, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=80', '169'] +21:48:22 延续时间169tick--:添加音符[0.6, 0.35208333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=105', '161'] +21:48:22 延续时间161tick--:添加音符[2.0, 0.33541666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '141'] +21:48:22 延续时间141tick--:添加音符[0.3, 0.29375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=79', '6'] +21:48:22 延续时间6tick--:添加音符[0.3, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '163'] +21:48:22 延续时间163tick--:添加音符[1.5, 0.33958333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=97', '10'] +21:48:22 延续时间10tick--:添加音符[1.5, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '159'] +21:48:22 延续时间159tick--:添加音符[0.15, 0.33125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=70', '7'] +21:48:22 延续时间7tick--:添加音符[0.15, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.3, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '204'] +21:48:22 延续时间204tick--:添加音符[1.0, 0.425] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=85', '5'] +21:48:22 延续时间5tick--:添加音符[0.75, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=73', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=88', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=74', '2'] +21:48:22 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=74', '0'] +21:48:22 延续时间0tick--:添加音符[0.28, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '11'] +21:48:22 延续时间11tick--:添加音符[0.6, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '39'] +21:48:22 延续时间39tick--:添加音符[0.15, 0.08125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.44, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=95', '51'] +21:48:22 延续时间51tick--:添加音符[1.7, 0.10625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '88'] +21:48:22 延续时间88tick--:添加音符[0.14, 0.18333333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '53'] +21:48:22 延续时间53tick--:添加音符[0.28, 0.11041666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=65', '5'] +21:48:22 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=58', '3'] +21:48:22 延续时间3tick--:添加音符[0.14, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=85', '139'] +21:48:22 延续时间139tick--:添加音符[0.42, 0.28958333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '45'] +21:48:22 延续时间45tick--:添加音符[0.14, 0.09375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '131'] +21:48:22 延续时间131tick--:添加音符[1.0, 0.27291666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=93', '1'] +21:48:22 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=73', '1'] +21:48:22 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=58', '3'] +21:48:22 延续时间3tick--:添加音符[1.0, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '71'] +21:48:22 延续时间71tick--:添加音符[0.75, 0.14791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '23'] +21:48:22 延续时间23tick--:添加音符[1.5, 0.04791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=87', '182'] +21:48:22 延续时间182tick--:添加音符[0.42, 0.37916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '448'] +21:48:22 延续时间448tick--:添加音符[1.12, 0.9333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=87', '10'] +21:48:22 延续时间10tick--:添加音符[0.75, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=80', '1'] +21:48:22 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=82', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=75', '1'] +21:48:22 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=57', '2'] +21:48:22 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.7, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[0.42, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '7'] +21:48:22 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '77'] +21:48:22 延续时间77tick--:添加音符[0.19, 0.16041666666666668] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '169'] +21:48:22 延续时间169tick--:添加音符[1.12, 0.35208333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=90', '4'] +21:48:22 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=78', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '108'] +21:48:22 延续时间108tick--:添加音符[0.37, 0.225] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=70', '4'] +21:48:22 延续时间4tick--:添加音符[0.37, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=75', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '165'] +21:48:22 延续时间165tick--:添加音符[0.75, 0.34375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=90', '4'] +21:48:22 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=87', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=73', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=83', '152'] +21:48:22 延续时间152tick--:添加音符[2.0, 0.31666666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=81', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '164'] +21:48:22 延续时间164tick--:添加音符[0.9, 0.3416666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=75', '5'] +21:48:22 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=86', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=95', '160'] +21:48:22 延续时间160tick--:添加音符[3.0, 0.3333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '188'] +21:48:22 延续时间188tick--:添加音符[1.7, 0.39166666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=86', '4'] +21:48:22 延续时间4tick--:添加音符[2.67, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=67', '0'] +21:48:22 延续时间0tick--:添加音符[0.28, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=83', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '39'] +21:48:22 延续时间39tick--:添加音符[0.9, 0.08125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.37, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=90', '234'] +21:48:22 延续时间234tick--:添加音符[2.24, 0.4875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=88', '1'] +21:48:22 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=82', '145'] +21:48:22 延续时间145tick--:添加音符[0.67, 0.3020833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=83', '1'] +21:48:22 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=71', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '102'] +21:48:22 延续时间102tick--:添加音符[1.33, 0.2125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=71', '5'] +21:48:22 延续时间5tick--:添加音符[1.33, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '26'] +21:48:22 延续时间26tick--:添加音符[1.7, 0.05416666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=76', '10'] +21:48:22 延续时间10tick--:添加音符[1.7, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '29'] +21:48:22 延续时间29tick--:添加音符[2.67, 0.06041666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=95', '7'] +21:48:22 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=86', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '130'] +21:48:22 延续时间130tick--:添加音符[0.84, 0.2708333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=78', '7'] +21:48:22 延续时间7tick--:添加音符[0.84, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '185'] +21:48:22 延续时间185tick--:添加音符[0.67, 0.3854166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=58', '6'] +21:48:22 延续时间6tick--:添加音符[0.67, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=73', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=68', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=65', '150'] +21:48:22 延续时间150tick--:添加音符[0.15, 0.3125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=83', '2'] +21:48:22 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '180'] +21:48:22 延续时间180tick--:添加音符[0.15, 0.375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=66', '9'] +21:48:22 延续时间9tick--:添加音符[0.15, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=89', '0'] +21:48:22 延续时间0tick--:添加音符[3.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=70', '0'] +21:48:22 延续时间0tick--:添加音符[0.3, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=81', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '199'] +21:48:22 延续时间199tick--:添加音符[1.5, 0.41458333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=70', '9'] +21:48:22 延续时间9tick--:添加音符[1.5, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=81', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=88', '2'] +21:48:22 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '135'] +21:48:22 延续时间135tick--:添加音符[3.0, 0.28125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.3, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=78', '10'] +21:48:22 延续时间10tick--:添加音符[0.3, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=72', '0'] +21:48:22 延续时间0tick--:添加音符[0.44, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '151'] +21:48:22 延续时间151tick--:添加音符[0.9, 0.3145833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=91', '8'] +21:48:22 延续时间8tick--:添加音符[1.5, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=85', '1'] +21:48:22 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=83', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=79', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=95', '101'] +21:48:22 延续时间101tick--:添加音符[1.7, 0.21041666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=85', '1'] +21:48:22 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '151'] +21:48:22 延续时间151tick--:添加音符[0.9, 0.3145833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=76', '8'] +21:48:22 延续时间8tick--:添加音符[0.9, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '145'] +21:48:22 延续时间145tick--:添加音符[1.5, 0.3020833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=67', '5'] +21:48:22 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=90', '0'] +21:48:22 延续时间0tick--:添加音符[2.4, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '2'] +21:48:22 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '70'] +21:48:22 延续时间70tick--:添加音符[0.15, 0.14583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=58', '77'] +21:48:22 延续时间77tick--:添加音符[0.22, 0.16041666666666668] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '30'] +21:48:22 延续时间30tick--:添加音符[0.44, 0.0625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=69', '0'] +21:48:22 延续时间0tick--:添加音符[0.44, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.84, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.4, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=74', '2'] +21:48:22 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=81', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=92', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=72', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '12'] +21:48:22 延续时间12tick--:添加音符[0.3, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '85'] +21:48:22 延续时间85tick--:添加音符[0.44, 0.17708333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=57', '10'] +21:48:22 延续时间10tick--:添加音符[0.44, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=79', '148'] +21:48:22 延续时间148tick--:添加音符[0.67, 0.30833333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=87', '1'] +21:48:22 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=84', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '138'] +21:48:22 延续时间138tick--:添加音符[1.8, 0.2875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '4'] +21:48:22 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=78', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '180'] +21:48:22 延续时间180tick--:添加音符[1.0, 0.375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=92', '5'] +21:48:22 延续时间5tick--:添加音符[1.7, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=85', '1'] +21:48:22 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=83', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.44, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '19'] +21:48:22 延续时间19tick--:添加音符[0.22, 0.03958333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=65', '59'] +21:48:22 延续时间59tick--:添加音符[0.28, 0.12291666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=77', '180'] +21:48:22 延续时间180tick--:添加音符[0.5, 0.375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=79', '1'] +21:48:22 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=71', '211'] +21:48:22 延续时间211tick--:添加音符[0.125, 0.4395833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '145'] +21:48:22 延续时间145tick--:添加音符[1.8, 0.3020833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=63', '0'] +21:48:22 延续时间0tick--:添加音符[0.25, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=74', '1'] +21:48:22 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=75', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=79', '5'] +21:48:22 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.28, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '17'] +21:48:22 延续时间17tick--:添加音符[1.0, 0.035416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '177'] +21:48:22 延续时间177tick--:添加音符[1.2, 0.36875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=83', '7'] +21:48:22 延续时间7tick--:添加音符[1.2, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=84', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=72', '150'] +21:48:22 延续时间150tick--:添加音符[0.75, 0.3125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=80', '2'] +21:48:22 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=87', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=77', '1'] +21:48:22 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '170'] +21:48:22 延续时间170tick--:添加音符[1.2, 0.3541666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=74', '5'] +21:48:22 延续时间5tick--:添加音符[0.6, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=84', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=75', '1'] +21:48:22 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '148'] +21:48:22 延续时间148tick--:添加音符[0.9, 0.30833333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=88', '5'] +21:48:22 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=85', '1'] +21:48:22 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=93', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=78', '1'] +21:48:22 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '147'] +21:48:22 延续时间147tick--:添加音符[0.75, 0.30625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=88', '4'] +21:48:22 延续时间4tick--:添加音符[1.2, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=87', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=104', '151'] +21:48:22 延续时间151tick--:添加音符[2.4, 0.3145833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '37'] +21:48:22 延续时间37tick--:添加音符[0.125, 0.07708333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=54', '124'] +21:48:22 延续时间124tick--:添加音符[0.4, 0.25833333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '29'] +21:48:22 延续时间29tick--:添加音符[1.33, 0.06041666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=100', '3'] +21:48:22 延续时间3tick--:添加音符[2.24, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=95', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=84', '0'] +21:48:22 延续时间0tick--:添加音符[0.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=83', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.6, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.4, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.25, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '131'] +21:48:22 延续时间131tick--:添加音符[1.12, 0.27291666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=86', '6'] +21:48:22 延续时间6tick--:添加音符[2.24, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=75', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=66', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=83', '112'] +21:48:22 延续时间112tick--:添加音符[0.6, 0.23333333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '72'] +21:48:22 延续时间72tick--:添加音符[1.8, 0.15] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '5'] +21:48:22 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=94', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '202'] +21:48:22 延续时间202tick--:添加音符[0.4, 0.42083333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=95', '6'] +21:48:22 延续时间6tick--:添加音符[2.0, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=88', '3'] +21:48:22 延续时间3tick--:添加音符[1.2, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=84', '1'] +21:48:22 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=79', '0'] +21:48:22 延续时间0tick--:添加音符[0.4, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=76', '2'] +21:48:22 延续时间2tick--:添加音符[0.2, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '134'] +21:48:22 延续时间134tick--:添加音符[0.2, 0.2791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=83', '11'] +21:48:22 延续时间11tick--:添加音符[0.2, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '143'] +21:48:22 延续时间143tick--:添加音符[0.6, 0.29791666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=90', '6'] +21:48:22 延续时间6tick--:添加音符[0.6, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=96', '2'] +21:48:22 延续时间2tick--:添加音符[0.8, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=92', '0'] +21:48:22 延续时间0tick--:添加音符[0.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=85', '172'] +21:48:22 延续时间172tick--:添加音符[0.14, 0.35833333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '150'] +21:48:22 延续时间150tick--:添加音符[0.14, 0.3125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=101', '4'] +21:48:22 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=107', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=104', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=99', '1'] +21:48:22 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=103', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=87', '1'] +21:48:22 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '6'] +21:48:22 延续时间6tick--:添加音符[0.4, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.6, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.6, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[0.2, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=89', '280'] +21:48:22 延续时间280tick--:添加音符[0.42, 0.5833333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=95', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=84', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '69', 'velocity=80', '6'] +21:48:22 延续时间6tick--:添加音符[1.25, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '69', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[1.25, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '100'] +21:48:22 延续时间100tick--:添加音符[0.28, 0.20833333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=77', '7'] +21:48:22 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '177'] +21:48:22 延续时间177tick--:添加音符[0.75, 0.36875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=102', '4'] +21:48:22 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=103', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '1'] +21:48:22 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=99', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=83', '151'] +21:48:22 延续时间151tick--:添加音符[0.56, 0.3145833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '143'] +21:48:22 延续时间143tick--:添加音符[0.75, 0.29791666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=100', '4'] +21:48:22 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=107', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '141'] +21:48:22 延续时间141tick--:添加音符[0.42, 0.29375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=68', '9'] +21:48:22 延续时间9tick--:添加音符[0.42, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '175'] +21:48:22 延续时间175tick--:添加音符[0.14, 0.3645833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=80', '11'] +21:48:22 延续时间11tick--:添加音符[0.14, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=88', '0'] +21:48:22 延续时间0tick--:添加音符[0.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=99', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '7'] +21:48:22 延续时间7tick--:添加音符[0.56, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.42, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '11'] +21:48:22 延续时间11tick--:添加音符[0.75, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '115'] +21:48:22 延续时间115tick--:添加音符[0.14, 0.23958333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=74', '4'] +21:48:22 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=67', '2'] +21:48:22 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '125'] +21:48:22 延续时间125tick--:添加音符[0.7, 0.2604166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=96', '5'] +21:48:22 延续时间5tick--:添加音符[0.7, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=74', '1'] +21:48:22 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '130'] +21:48:22 延续时间130tick--:添加音符[0.14, 0.2708333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.28, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=77', '5'] +21:48:22 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=68', '4'] +21:48:22 延续时间4tick--:添加音符[0.14, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '167'] +21:48:22 延续时间167tick--:添加音符[0.7, 0.34791666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=93', '11'] +21:48:22 延续时间11tick--:添加音符[0.42, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=75', '0'] +21:48:22 延续时间0tick--:添加音符[0.21, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=84', '0'] +21:48:22 延续时间0tick--:添加音符[0.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=78', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.21, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '184'] +21:48:22 延续时间184tick--:添加音符[0.28, 0.38333333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.7, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=64', '3'] +21:48:22 延续时间3tick--:添加音符[0.28, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=86', '1'] +21:48:22 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=67', '1'] +21:48:22 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=56', '165'] +21:48:22 延续时间165tick--:添加音符[0.19, 0.34375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=62', '0'] +21:48:22 延续时间0tick--:添加音符[0.094, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '7'] +21:48:22 延续时间7tick--:添加音符[0.094, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '176'] +21:48:22 延续时间176tick--:添加音符[0.19, 0.36666666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=95', '5'] +21:48:22 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=97', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=100', '1'] +21:48:22 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=88', '2'] +21:48:22 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[0.56, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.28, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.42, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[1.0, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '215'] +21:48:22 延续时间215tick--:添加音符[1.8, 0.4479166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=89', '7'] +21:48:22 延续时间7tick--:添加音符[1.8, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=97', '2'] +21:48:22 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=81', '147'] +21:48:22 延续时间147tick--:添加音符[0.37, 0.30625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=78', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '159'] +21:48:22 延续时间159tick--:添加音符[0.37, 0.33125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '10'] +21:48:22 延续时间10tick--:添加音符[2.24, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=80', '1'] +21:48:22 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '143'] +21:48:22 延续时间143tick--:添加音符[2.0, 0.29791666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=91', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=81', '137'] +21:48:22 延续时间137tick--:添加音符[0.9, 0.28541666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '22'] +21:48:22 延续时间22tick--:添加音符[2.24, 0.04583333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=88', '5'] +21:48:22 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=97', '147'] +21:48:22 延续时间147tick--:添加音符[3.0, 0.30625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=54', '30'] +21:48:22 延续时间30tick--:添加音符[2.67, 0.0625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '10'] +21:48:22 延续时间10tick--:添加音符[2.67, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=71', '59'] +21:48:22 延续时间59tick--:添加音符[0.14, 0.12291666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '95'] +21:48:22 延续时间95tick--:添加音符[1.7, 0.19791666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=78', '2'] +21:48:22 延续时间2tick--:添加音符[0.28, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=88', '0'] +21:48:22 延续时间0tick--:添加音符[2.67, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=86', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[0.37, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '130'] +21:48:22 延续时间130tick--:添加音符[0.14, 0.2708333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=91', '119'] +21:48:22 延续时间119tick--:添加音符[2.24, 0.24791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=96', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=72', '134'] +21:48:22 延续时间134tick--:添加音符[0.56, 0.2791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=79', '1'] +21:48:22 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=84', '2'] +21:48:22 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '59'] +21:48:22 延续时间59tick--:添加音符[1.33, 0.12291666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=77', '10'] +21:48:22 延续时间10tick--:添加音符[1.33, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '36'] +21:48:22 延续时间36tick--:添加音符[1.7, 0.075] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=76', '10'] +21:48:22 延续时间10tick--:添加音符[1.7, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '52'] +21:48:22 延续时间52tick--:添加音符[2.67, 0.10833333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=95', '7'] +21:48:22 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=90', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '160'] +21:48:22 延续时间160tick--:添加音符[0.84, 0.3333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=81', '10'] +21:48:22 延续时间10tick--:添加音符[0.84, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=91', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '143'] +21:48:22 延续时间143tick--:添加音符[0.67, 0.29791666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=75', '2'] +21:48:22 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=86', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=65', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '133'] +21:48:22 延续时间133tick--:添加音符[1.33, 0.27708333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=78', '10'] +21:48:22 延续时间10tick--:添加音符[1.33, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=73', '55'] +21:48:22 延续时间55tick--:添加音符[0.15, 0.11458333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=82', '130'] +21:48:22 延续时间130tick--:添加音符[0.3, 0.2708333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=92', '1'] +21:48:22 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[1.33, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.67, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '12'] +21:48:22 延续时间12tick--:添加音符[0.67, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.84, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '69'] +21:48:22 延续时间69tick--:添加音符[2.24, 0.14375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '169'] +21:48:22 延续时间169tick--:添加音符[1.5, 0.35208333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=80', '10'] +21:48:22 延续时间10tick--:添加音符[1.5, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=90', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=83', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '128'] +21:48:22 延续时间128tick--:添加音符[0.3, 0.26666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=77', '7'] +21:48:22 延续时间7tick--:添加音符[0.3, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=62', '66'] +21:48:22 延续时间66tick--:添加音符[0.44, 0.1375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '103'] +21:48:22 延续时间103tick--:添加音符[0.9, 0.21458333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=73', '11'] +21:48:22 延续时间11tick--:添加音符[0.75, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=83', '0'] +21:48:22 延续时间0tick--:添加音符[0.6, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=89', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=73', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=101', '173'] +21:48:22 延续时间173tick--:添加音符[1.7, 0.36041666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=85', '2'] +21:48:22 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '144'] +21:48:22 延续时间144tick--:添加音符[0.44, 0.3] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '4'] +21:48:22 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=67', '1'] +21:48:22 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=95', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=83', '139'] +21:48:22 延续时间139tick--:添加音符[2.4, 0.28958333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=62', '154'] +21:48:22 延续时间154tick--:添加音符[0.22, 0.32083333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '33'] +21:48:22 延续时间33tick--:添加音符[1.8, 0.06875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=87', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.6, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.4, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.84, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=77', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=73', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.15, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[3.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=66', '102'] +21:48:22 延续时间102tick--:添加音符[0.44, 0.2125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=81', '146'] +21:48:22 延续时间146tick--:添加音符[0.67, 0.30416666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=87', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=89', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '135'] +21:48:22 延续时间135tick--:添加音符[1.8, 0.28125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=87', '5'] +21:48:22 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=86', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=52', '122'] +21:48:22 延续时间122tick--:添加音符[0.17, 0.25416666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '64'] +21:48:22 延续时间64tick--:添加音符[1.0, 0.13333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=85', '7'] +21:48:22 延续时间7tick--:添加音符[0.84, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=84', '2'] +21:48:22 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=91', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=73', '1'] +21:48:22 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=73', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '16'] +21:48:22 延续时间16tick--:添加音符[1.12, 0.03333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.22, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.44, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.17, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '23'] +21:48:22 延续时间23tick--:添加音符[0.14, 0.04791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=79', '37'] +21:48:22 延续时间37tick--:添加音符[0.28, 0.07708333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '155'] +21:48:22 延续时间155tick--:添加音符[0.84, 0.3229166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=90', '5'] +21:48:22 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=82', '2'] +21:48:22 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=83', '151'] +21:48:22 延续时间151tick--:添加音符[0.9, 0.3145833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=62', '239'] +21:48:22 延续时间239tick--:添加音符[0.25, 0.4979166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '2'] +21:48:22 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=79', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.28, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.84, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '7'] +21:48:22 延续时间7tick--:添加音符[1.33, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '138'] +21:48:22 延续时间138tick--:添加音符[1.5, 0.2875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=74', '11'] +21:48:22 延续时间11tick--:添加音符[1.5, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=55', '1'] +21:48:22 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=65', '131'] +21:48:22 延续时间131tick--:添加音符[0.5, 0.27291666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=79', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=78', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '179'] +21:48:22 延续时间179tick--:添加音符[1.2, 0.3729166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=66', '4'] +21:48:22 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=75', '1'] +21:48:22 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=75', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=73', '0'] +21:48:22 延续时间0tick--:添加音符[1.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '149'] +21:48:22 延续时间149tick--:添加音符[1.2, 0.3104166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[1.5, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=78', '2'] +21:48:22 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=70', '1'] +21:48:22 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=64', '5'] +21:48:22 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '137'] +21:48:22 延续时间137tick--:添加音符[1.2, 0.28541666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=81', '5'] +21:48:22 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=80', '0'] +21:48:22 延续时间0tick--:添加音符[1.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=71', '1'] +21:48:22 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=58', '9'] +21:48:22 延续时间9tick--:添加音符[0.5, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=89', '121'] +21:48:22 延续时间121tick--:添加音符[2.4, 0.2520833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '253'] +21:48:22 延续时间253tick--:添加音符[1.33, 0.5270833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=77', '5'] +21:48:22 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=69', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=72', '1'] +21:48:22 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=52', '4'] +21:48:22 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=50', '5'] +21:48:22 延续时间5tick--:添加音符[0.4, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.25, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '20'] +21:48:22 延续时间20tick--:添加音符[1.5, 0.041666666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '154'] +21:48:22 延续时间154tick--:添加音符[0.6, 0.32083333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=69', '0'] +21:48:22 延续时间0tick--:添加音符[0.3, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=64', '5'] +21:48:22 延续时间5tick--:添加音符[0.6, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=98', '4'] +21:48:22 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=77', '1'] +21:48:22 延续时间1tick--:添加音符[0.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=63', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=89', '1'] +21:48:22 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '196'] +21:48:22 延续时间196tick--:添加音符[1.8, 0.4083333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=101', '12'] +21:48:22 延续时间12tick--:添加音符[1.8, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=92', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '180'] +21:48:22 延续时间180tick--:添加音符[0.4, 0.375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=99', '9'] +21:48:22 延续时间9tick--:添加音符[1.2, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=97', '1'] +21:48:22 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=91', '1'] +21:48:22 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=100', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=87', '1'] +21:48:22 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=80', '1'] +21:48:22 延续时间1tick--:添加音符[0.2, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '148'] +21:48:22 延续时间148tick--:添加音符[0.2, 0.30833333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=76', '9'] +21:48:22 延续时间9tick--:添加音符[0.2, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '121'] +21:48:22 延续时间121tick--:添加音符[0.6, 0.2520833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=95', '8'] +21:48:22 延续时间8tick--:添加音符[0.6, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=99', '2'] +21:48:22 延续时间2tick--:添加音符[0.8, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=77', '1'] +21:48:22 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '122'] +21:48:22 延续时间122tick--:添加音符[0.14, 0.25416666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '198'] +21:48:22 延续时间198tick--:添加音符[0.14, 0.4125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '3'] +21:48:22 延续时间3tick--:添加音符[0.28, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=88', '1'] +21:48:22 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=113', '3'] +21:48:22 延续时间3tick--:添加音符[2.24, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=114', '1'] +21:48:22 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=106', '3'] +21:48:22 延续时间3tick--:添加音符[1.7, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=105', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '54'] +21:48:22 延续时间54tick--:添加音符[0.9, 0.1125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.2, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.3, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[0.5, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.56, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '185'] +21:48:22 延续时间185tick--:添加音符[1.12, 0.3854166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '11'] +21:48:22 延续时间11tick--:添加音符[1.12, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=84', '1'] +21:48:22 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=88', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=85', '153'] +21:48:22 延续时间153tick--:添加音符[0.42, 0.31875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '141'] +21:48:22 延续时间141tick--:添加音符[0.28, 0.29375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=92', '6'] +21:48:22 延续时间6tick--:添加音符[0.28, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=104', '1'] +21:48:22 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=105', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=93', '4'] +21:48:22 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '33', 'velocity=81', '127'] +21:48:22 延续时间127tick--:添加音符[0.16, 0.26458333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '177'] +21:48:22 延续时间177tick--:添加音符[0.14, 0.36875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.28, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=109', '3'] +21:48:22 延续时间3tick--:添加音符[0.7, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=99', '1'] +21:48:22 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=105', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=87', '0'] +21:48:22 延续时间0tick--:添加音符[0.14, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=89', '3'] +21:48:22 延续时间3tick--:添加音符[1.12, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '58'] +21:48:22 延续时间58tick--:添加音符[0.42, 0.12083333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '33', 'velocity=0', '11'] +21:48:22 延续时间11tick--:添加音符[0.16, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '169'] +21:48:22 延续时间169tick--:添加音符[0.7, 0.35208333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=82', '3'] +21:48:22 延续时间3tick--:添加音符[0.7, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=61', '3'] +21:48:22 延续时间3tick--:添加音符[1.12, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=64', '3'] +21:48:22 延续时间3tick--:添加音符[1.0, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '22'] +21:48:22 延续时间22tick--:添加音符[0.14, 0.04583333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '138'] +21:48:22 延续时间138tick--:添加音符[0.28, 0.2875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=74', '4'] +21:48:22 延续时间4tick--:添加音符[0.42, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=72', '0'] +21:48:22 延续时间0tick--:添加音符[0.28, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '134'] +21:48:22 延续时间134tick--:添加音符[0.7, 0.2791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=95', '6'] +21:48:22 延续时间6tick--:添加音符[0.7, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=85', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=75', '190'] +21:48:22 延续时间190tick--:添加音符[0.56, 0.3958333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=102', '151'] +21:48:22 延续时间151tick--:添加音符[1.4, 0.3145833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '12'] +21:48:22 延续时间12tick--:添加音符[1.0, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=57', '11'] +21:48:22 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '127'] +21:48:22 延续时间127tick--:添加音符[0.42, 0.26458333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=70', '9'] +21:48:22 延续时间9tick--:添加音符[0.42, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '204'] +21:48:22 延续时间204tick--:添加音符[1.5, 0.425] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=46', '5'] +21:48:22 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=47', '346'] +21:48:22 延续时间346tick--:添加音符[0.14, 0.7208333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '87'] +21:48:22 延续时间87tick--:添加音符[1.0, 0.18125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=58', '8'] +21:48:22 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=43', '3'] +21:48:22 延续时间3tick--:添加音符[0.19, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=44', '1'] +21:48:22 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.4, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.28, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.14, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.42, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '100'] +21:48:22 延续时间100tick--:添加音符[0.37, 0.20833333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=40', '302'] +21:48:22 延续时间302tick--:添加音符[0.37, 0.6291666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '166'] +21:48:22 延续时间166tick--:添加音符[1.0, 0.3458333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=60', '12'] +21:48:22 延续时间12tick--:添加音符[1.0, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=46', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=49', '319'] +21:48:22 延续时间319tick--:添加音符[0.56, 0.6645833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '169'] +21:48:22 延续时间169tick--:添加音符[0.19, 0.35208333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=36', '10'] +21:48:22 延续时间10tick--:添加音符[0.19, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '235'] +21:48:22 延续时间235tick--:添加音符[0.37, 0.4895833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=29', '7'] +21:48:22 延续时间7tick--:添加音符[0.37, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '64', 'velocity=50', '4'] +21:48:22 延续时间4tick--:添加音符[0.94, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=33', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=38', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '16'] +21:48:22 延续时间16tick--:添加音符[1.0, 0.03333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '64', 'velocity=0', '14'] +21:48:22 延续时间14tick--:添加音符[0.94, 0.029166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '23'] +21:48:22 延续时间23tick--:添加音符[0.75, 0.04791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.56, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=44', '83'] +21:48:22 延续时间83tick--:添加音符[4.5, 0.17291666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=27', '2'] +21:48:22 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=39', '3'] +21:48:22 延续时间3tick--:添加音符[2.67, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '161'] +21:48:22 延续时间161tick--:添加音符[4.5, 0.33541666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[2.67, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=46', '3'] +21:48:22 延续时间3tick--:添加音符[4.5, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=32', '3'] +21:48:22 延续时间3tick--:添加音符[0.67, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=46', '1'] +21:48:22 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '116'] +21:48:22 延续时间116tick--:添加音符[0.44, 0.24166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=36', '53'] +21:48:22 延续时间53tick--:添加音符[2.24, 0.11041666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '139'] +21:48:22 延续时间139tick--:添加音符[2.67, 0.28958333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=54', '2'] +21:48:22 延续时间2tick--:添加音符[4.76, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=55', '3'] +21:48:22 延续时间3tick--:添加音符[2.67, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=30', '3'] +21:48:22 延续时间3tick--:添加音符[0.9, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '146'] +21:48:22 延续时间146tick--:添加音符[2.24, 0.30416666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=43', '8'] +21:48:22 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '145'] +21:48:22 延续时间145tick--:添加音符[2.67, 0.3020833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[4.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=51', '9'] +21:48:22 延续时间9tick--:添加音符[4.5, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=48', '2'] +21:48:22 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=31', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '133'] +21:48:22 延续时间133tick--:添加音符[2.24, 0.27708333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=34', '5'] +21:48:22 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=57', '155'] +21:48:22 延续时间155tick--:添加音符[4.0, 0.3229166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=33', '3'] +21:48:22 延续时间3tick--:添加音符[0.42, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '12'] +21:48:22 延续时间12tick--:添加音符[2.24, 0.025] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[0.67, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.9, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '10'] +21:48:22 延续时间10tick--:添加音符[1.12, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[2.67, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '7'] +21:48:22 延续时间7tick--:添加音符[4.76, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=53', '82'] +21:48:22 延续时间82tick--:添加音符[2.24, 0.17083333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=40', '137'] +21:48:22 延续时间137tick--:添加音符[0.67, 0.28541666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=41', '2'] +21:48:22 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '139'] +21:48:22 延续时间139tick--:添加音符[2.24, 0.28958333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=53', '11'] +21:48:22 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=68', '155'] +21:48:22 延续时间155tick--:添加音符[5.34, 0.3229166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=36', '14'] +21:48:22 延续时间14tick--:添加音符[1.0, 0.029166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '128'] +21:48:22 延续时间128tick--:添加音符[2.24, 0.26666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=47', '10'] +21:48:22 延续时间10tick--:添加音符[2.24, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '166'] +21:48:22 延续时间166tick--:添加音符[0.67, 0.3458333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=41', '5'] +21:48:22 延续时间5tick--:添加音符[0.67, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=47', '2'] +21:48:22 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '170'] +21:48:22 延续时间170tick--:添加音符[2.24, 0.3541666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=45', '5'] +21:48:22 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=28', '145'] +21:48:22 延续时间145tick--:添加音符[0.37, 0.3020833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=56', '0'] +21:48:22 延续时间0tick--:添加音符[3.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[4.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[5.34, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.42, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[4.5, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=41', '32'] +21:48:22 延续时间32tick--:添加音符[2.0, 0.06666666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '145'] +21:48:22 延续时间145tick--:添加音符[3.56, 0.3020833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=64', '8'] +21:48:22 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=36', '4'] +21:48:22 延续时间4tick--:添加音符[0.56, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=51', '0'] +21:48:22 延续时间0tick--:添加音符[1.8, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=71', '316'] +21:48:22 延续时间316tick--:添加音符[4.0, 0.6583333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=40', '6'] +21:48:22 延续时间6tick--:添加音符[0.75, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '142'] +21:48:22 延续时间142tick--:添加音符[2.0, 0.29583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=40', '9'] +21:48:22 延续时间9tick--:添加音符[2.0, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '145'] +21:48:22 延续时间145tick--:添加音符[3.56, 0.3020833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=63', '8'] +21:48:22 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=44', '6'] +21:48:22 延续时间6tick--:添加音符[0.9, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '139'] +21:48:22 延续时间139tick--:添加音符[1.8, 0.28958333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=42', '6'] +21:48:22 延续时间6tick--:添加音符[1.8, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=69', '179'] +21:48:22 延续时间179tick--:添加音符[4.5, 0.3729166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=58', '4'] +21:48:22 延续时间4tick--:添加音符[3.36, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=48', '0'] +21:48:22 延续时间0tick--:添加音符[0.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=46', '2'] +21:48:22 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[0.75, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[3.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.56, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=53', '62'] +21:48:22 延续时间62tick--:添加音符[2.24, 0.12916666666666668] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=47', '165'] +21:48:22 延续时间165tick--:添加音符[2.0, 0.34375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=43', '1'] +21:48:22 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=46', '149'] +21:48:22 延续时间149tick--:添加音符[1.7, 0.3104166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '168'] +21:48:22 延续时间168tick--:添加音符[0.67, 0.35] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[3.36, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=65', '9'] +21:48:22 延续时间9tick--:添加音符[3.36, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=42', '2'] +21:48:22 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '158'] +21:48:22 延续时间158tick--:添加音符[2.24, 0.32916666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=54', '9'] +21:48:22 延续时间9tick--:添加音符[2.24, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '160'] +21:48:22 延续时间160tick--:添加音符[0.84, 0.3333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=42', '4'] +21:48:22 延续时间4tick--:添加音符[0.84, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=47', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '126'] +21:48:22 延续时间126tick--:添加音符[1.7, 0.2625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=52', '5'] +21:48:22 延续时间5tick--:添加音符[1.7, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=36', '147'] +21:48:22 延续时间147tick--:添加音符[0.22, 0.30625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '46'] +21:48:22 延续时间46tick--:添加音符[4.5, 0.09583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.67, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.84, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[0.33, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[4.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=74', '1'] +21:48:22 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=52', '3'] +21:48:22 延续时间3tick--:添加音符[1.12, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=54', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=55', '78'] +21:48:22 延续时间78tick--:添加音符[0.44, 0.1625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=64', '167'] +21:48:22 延续时间167tick--:添加音符[0.67, 0.34791666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=62', '144'] +21:48:22 延续时间144tick--:添加音符[0.9, 0.3] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '148'] +21:48:22 延续时间148tick--:添加音符[1.33, 0.30833333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=76', '5'] +21:48:22 延续时间5tick--:添加音符[2.0, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=75', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=62', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '149'] +21:48:22 延续时间149tick--:添加音符[0.67, 0.3104166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=59', '6'] +21:48:22 延续时间6tick--:添加音符[0.67, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '163'] +21:48:22 延续时间163tick--:添加音符[1.12, 0.33958333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=82', '4'] +21:48:22 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=60', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=71', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=43', '174'] +21:48:22 延续时间174tick--:添加音符[0.21, 0.3625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '158'] +21:48:22 延续时间158tick--:添加音符[1.33, 0.32916666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=68', '5'] +21:48:22 延续时间5tick--:添加音符[2.67, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=66', '2'] +21:48:22 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=48', '3'] +21:48:22 延续时间3tick--:添加音符[0.42, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=57', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '21'] +21:48:22 延续时间21tick--:添加音符[0.67, 0.04375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.44, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=0', '135'] +21:48:22 延续时间135tick--:添加音符[0.21, 0.28125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '161'] +21:48:22 延续时间161tick--:添加音符[1.33, 0.33541666666666664] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=71', '2'] +21:48:22 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=54', '3'] +21:48:22 延续时间3tick--:添加音符[1.33, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=50', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '156'] +21:48:22 延续时间156tick--:添加音符[0.42, 0.325] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=47', '6'] +21:48:22 延续时间6tick--:添加音符[0.42, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=50', '0'] +21:48:22 延续时间0tick--:添加音符[0.67, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '133'] +21:48:22 延续时间133tick--:添加音符[1.33, 0.27708333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=71', '10'] +21:48:22 延续时间10tick--:添加音符[2.0, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=61', '1'] +21:48:22 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=48', '1'] +21:48:22 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=49', '2'] +21:48:22 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=57', '164'] +21:48:22 延续时间164tick--:添加音符[0.84, 0.3416666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=72', '167'] +21:48:22 延续时间167tick--:添加音符[1.8, 0.34791666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '92'] +21:48:22 延续时间92tick--:添加音符[2.0, 0.19166666666666668] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=74', '11'] +21:48:22 延续时间11tick--:添加音符[2.0, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '82'] +21:48:22 延续时间82tick--:添加音符[1.8, 0.17083333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=61', '10'] +21:48:22 延续时间10tick--:添加音符[1.8, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=46', '155'] +21:48:22 延续时间155tick--:添加音符[0.15, 0.3229166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=49', '31'] +21:48:22 延续时间31tick--:添加音符[0.3, 0.06458333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '6'] +21:48:22 延续时间6tick--:添加音符[1.12, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=69', '1'] +21:48:22 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.33, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.67, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.84, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.42, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[2.24, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '24'] +21:48:22 延续时间24tick--:添加音符[1.0, 0.05] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '100'] +21:48:22 延续时间100tick--:添加音符[0.15, 0.20833333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=56', '231'] +21:48:22 延续时间231tick--:添加音符[0.6, 0.48125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=58', '150'] +21:48:22 延续时间150tick--:添加音符[0.75, 0.3125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=58', '168'] +21:48:22 延续时间168tick--:添加音符[1.0, 0.35] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=57', '153'] +21:48:22 延续时间153tick--:添加音符[1.12, 0.31875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '197'] +21:48:22 延续时间197tick--:添加音符[1.12, 0.41041666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=58', '4'] +21:48:22 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=43', '6'] +21:48:22 延续时间6tick--:添加音符[1.12, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=51', '517'] +21:48:22 延续时间517tick--:添加音符[3.0, 1.0770833333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1285'] +21:48:22 延续时间1285tick--:添加音符[1.5, 2.6770833333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=41', '9'] +21:48:22 延续时间9tick--:添加音符[1.5, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=41', '238'] +21:48:22 延续时间238tick--:添加音符[1.7, 0.49583333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=35', '326'] +21:48:22 延续时间326tick--:添加音符[0.19, 0.6791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=45', '2'] +21:48:22 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=32', '8'] +21:48:22 延续时间8tick--:添加音符[0.9, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.75, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.3, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '25'] +21:48:22 延续时间25tick--:添加音符[1.12, 0.052083333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=37', '473'] +21:48:22 延续时间473tick--:添加音符[0.56, 0.9854166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '65'] +21:48:22 延续时间65tick--:添加音符[0.19, 0.13541666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[0.56, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '11'] +21:48:22 延续时间11tick--:添加音符[1.8, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=54', '45'] +21:48:22 延续时间45tick--:添加音符[1.8, 0.09375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=36', '6'] +21:48:22 延续时间6tick--:添加音符[0.9, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=58', '174'] +21:48:22 延续时间174tick--:添加音符[1.7, 0.3625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '25'] +21:48:22 延续时间25tick--:添加音符[1.8, 0.052083333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '134'] +21:48:22 延续时间134tick--:添加音符[1.5, 0.2791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[1.7, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=56', '22'] +21:48:22 延续时间22tick--:添加音符[1.33, 0.04583333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=42', '74'] +21:48:22 延续时间74tick--:添加音符[0.14, 0.15416666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=55', '116'] +21:48:22 延续时间116tick--:添加音符[1.12, 0.24166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=43', '1'] +21:48:22 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=40', '5'] +21:48:22 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=43', '1'] +21:48:22 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '198'] +21:48:22 延续时间198tick--:添加音符[0.14, 0.4125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '7'] +21:48:22 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=52', '104'] +21:48:22 延续时间104tick--:添加音符[1.33, 0.21666666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '55'] +21:48:22 延续时间55tick--:添加音符[1.33, 0.11458333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=47', '106'] +21:48:22 延续时间106tick--:添加音符[0.28, 0.22083333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.0, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=55', '1'] +21:48:22 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '9'] +21:48:22 延续时间9tick--:添加音符[0.84, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '21'] +21:48:22 延续时间21tick--:添加音符[0.28, 0.04375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=60', '139'] +21:48:22 延续时间139tick--:添加音符[0.67, 0.28958333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=36', '16'] +21:48:22 延续时间16tick--:添加音符[0.84, 0.03333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=32', '4'] +21:48:22 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=50', '118'] +21:48:22 延续时间118tick--:添加音符[0.5, 0.24583333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '30'] +21:48:22 延续时间30tick--:添加音符[0.84, 0.0625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '6'] +21:48:22 延续时间6tick--:添加音符[0.5, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '87'] +21:48:22 延续时间87tick--:添加音符[1.0, 0.18125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '17'] +21:48:22 延续时间17tick--:添加音符[1.33, 0.035416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '17'] +21:48:22 延续时间17tick--:添加音符[0.67, 0.035416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=65', '5'] +21:48:22 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=60', '156'] +21:48:22 延续时间156tick--:添加音符[0.84, 0.325] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=40', '144'] +21:48:22 延续时间144tick--:添加音符[0.15, 0.3] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '10'] +21:48:22 延续时间10tick--:添加音符[0.15, 0.020833333333333332] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '34'] +21:48:22 延续时间34tick--:添加音符[0.28, 0.07083333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.84, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=50', '4'] +21:48:22 延续时间4tick--:添加音符[0.3, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=76', '2'] +21:48:22 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=61', '3'] +21:48:22 延续时间3tick--:添加音符[0.75, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=61', '3'] +21:48:22 延续时间3tick--:添加音符[0.9, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '353'] +21:48:22 延续时间353tick--:添加音符[0.3, 0.7354166666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '154'] +21:48:22 延续时间154tick--:添加音符[0.75, 0.32083333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=47', '4'] +21:48:22 延续时间4tick--:添加音符[0.3, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=39', '1'] +21:48:22 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '142'] +21:48:22 延续时间142tick--:添加音符[0.3, 0.29583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=76', '0'] +21:48:22 延续时间0tick--:添加音符[1.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=47', '2'] +21:48:22 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '84'] +21:48:22 延续时间84tick--:添加音符[0.6, 0.175] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=84', '11'] +21:48:22 延续时间11tick--:添加音符[1.33, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=80', '162'] +21:48:22 延续时间162tick--:添加音符[1.2, 0.3375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '139'] +21:48:22 延续时间139tick--:添加音符[1.12, 0.28958333333333336] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=41', '44'] +21:48:22 延续时间44tick--:添加音符[0.22, 0.09166666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '135'] +21:48:22 延续时间135tick--:添加音符[1.12, 0.28125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=68', '11'] +21:48:22 延续时间11tick--:添加音符[0.67, 0.022916666666666665] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=75', '0'] +21:48:22 延续时间0tick--:添加音符[1.12, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=53', '3'] +21:48:22 延续时间3tick--:添加音符[0.44, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=48', '5'] +21:48:22 延续时间5tick--:添加音符[0.33, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.33, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=46', '3'] +21:48:22 延续时间3tick--:添加音符[0.5, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '22'] +21:48:22 延续时间22tick--:添加音符[1.33, 0.04583333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.22, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '173'] +21:48:22 延续时间173tick--:添加音符[1.12, 0.36041666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=70', '35'] +21:48:22 延续时间35tick--:添加音符[1.12, 0.07291666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '141'] +21:48:22 延续时间141tick--:添加音符[1.12, 0.29375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=63', '7'] +21:48:22 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '3'] +21:48:22 延续时间3tick--:添加音符[0.9, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.44, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.67, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=55', '6'] +21:48:22 延续时间6tick--:添加音符[0.67, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=38', '3'] +21:48:22 延续时间3tick--:添加音符[0.5, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '127'] +21:48:22 延续时间127tick--:添加音符[0.5, 0.26458333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '8'] +21:48:22 延续时间8tick--:添加音符[0.67, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=46', '30'] +21:48:22 延续时间30tick--:添加音符[0.33, 0.0625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '43'] +21:48:22 延续时间43tick--:添加音符[0.33, 0.08958333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=58', '108'] +21:48:22 延续时间108tick--:添加音符[0.67, 0.225] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=36', '6'] +21:48:22 延续时间6tick--:添加音符[0.56, 0.0125] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=38', '0'] +21:48:22 延续时间0tick--:添加音符[0.5, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '45'] +21:48:22 延续时间45tick--:添加音符[1.12, 0.09375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=72', '98'] +21:48:22 延续时间98tick--:添加音符[1.12, 0.20416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=54', '78'] +21:48:22 延续时间78tick--:添加音符[0.25, 0.1625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=58', '57'] +21:48:22 延续时间57tick--:添加音符[0.44, 0.11875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=68', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '5'] +21:48:22 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=62', '17'] +21:48:22 延续时间17tick--:添加音符[1.2, 0.035416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '9'] +21:48:22 延续时间9tick--:添加音符[0.56, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=74', '51'] +21:48:22 延续时间51tick--:添加音符[1.12, 0.10625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=63', '158'] +21:48:22 延续时间158tick--:添加音符[0.6, 0.32916666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=79', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '128'] +21:48:22 延续时间128tick--:添加音符[1.12, 0.26666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=98', '5'] +21:48:22 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=69', '1'] +21:48:22 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '178'] +21:48:22 延续时间178tick--:添加音符[1.2, 0.37083333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.25, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[0.44, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +21:48:22 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +21:48:22 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=87', '3'] +21:48:22 延续时间3tick--:添加音符[1.2, 0.00625] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=65', '1'] +21:48:22 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '41'] +21:48:22 延续时间41tick--:添加音符[1.12, 0.08541666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '34'] +21:48:22 延续时间34tick--:添加音符[0.9, 0.07083333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '71'] +21:48:22 延续时间71tick--:添加音符[1.2, 0.14791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '4'] +21:48:22 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=57', '8'] +21:48:22 延续时间8tick--:添加音符[0.6, 0.016666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=73', '2'] +21:48:22 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '43'] +21:48:22 延续时间43tick--:添加音符[0.6, 0.08958333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=40', '113'] +21:48:22 延续时间113tick--:添加音符[0.25, 0.23541666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=70', '1'] +21:48:22 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '9'] +21:48:22 延续时间9tick--:添加音符[0.25, 0.01875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '23'] +21:48:22 延续时间23tick--:添加音符[1.12, 0.04791666666666667] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=74', '128'] +21:48:22 延续时间128tick--:添加音符[2.0, 0.26666666666666666] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=45', '4'] +21:48:22 延续时间4tick--:添加音符[0.19, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=71', '180'] +21:48:22 延续时间180tick--:添加音符[1.7, 0.375] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=60', '4'] +21:48:22 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=50', '1'] +21:48:22 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=56', '181'] +21:48:22 延续时间181tick--:添加音符[0.56, 0.3770833333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=76', '138'] +21:48:22 延续时间138tick--:添加音符[1.8, 0.2875] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=62', '1'] +21:48:22 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '163'] +21:48:22 延续时间163tick--:添加音符[0.37, 0.33958333333333335] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '7'] +21:48:22 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:22 延续时间0tick--:添加音符[1.7, 1.0] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=47', '1'] +21:48:22 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:22 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=69', '3'] +21:48:23 延续时间3tick--:添加音符[1.7, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=60', '3'] +21:48:23 延续时间3tick--:添加音符[1.0, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=47', '24'] +21:48:23 延续时间24tick--:添加音符[0.9, 0.05] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=41', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=50', '156'] +21:48:23 延续时间156tick--:添加音符[0.56, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '9'] +21:48:23 延续时间9tick--:添加音符[0.37, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '15'] +21:48:23 延续时间15tick--:添加音符[0.75, 0.03125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=64', '13'] +21:48:23 延续时间13tick--:添加音符[1.5, 0.027083333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '149'] +21:48:23 延续时间149tick--:添加音符[1.7, 0.3104166666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=59', '7'] +21:48:23 延续时间7tick--:添加音符[1.7, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '19'] +21:48:23 延续时间19tick--:添加音符[0.56, 0.03958333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '5'] +21:48:23 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=58', '5'] +21:48:23 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=69', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=52', '5'] +21:48:23 延续时间5tick--:添加音符[0.3, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=70', '56'] +21:48:23 延续时间56tick--:添加音符[1.7, 0.11666666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=75', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '143'] +21:48:23 延续时间143tick--:添加音符[1.5, 0.29791666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=81', '5'] +21:48:23 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=78', '1'] +21:48:23 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '132'] +21:48:23 延续时间132tick--:添加音符[1.33, 0.275] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=93', '6'] +21:48:23 延续时间6tick--:添加音符[1.7, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=81', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '217'] +21:48:23 延续时间217tick--:添加音符[1.5, 0.45208333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=71', '6'] +21:48:23 延续时间6tick--:添加音符[1.5, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=80', '2'] +21:48:23 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '19'] +21:48:23 延续时间19tick--:添加音符[1.7, 0.03958333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=78', '112'] +21:48:23 延续时间112tick--:添加音符[1.7, 0.23333333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=70', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '195'] +21:48:23 延续时间195tick--:添加音符[1.2, 0.40625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=64', '6'] +21:48:23 延续时间6tick--:添加音符[1.2, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=76', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=47', '137'] +21:48:23 延续时间137tick--:添加音符[0.14, 0.28541666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '87'] +21:48:23 延续时间87tick--:添加音符[1.7, 0.18125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=55', '3'] +21:48:23 延续时间3tick--:添加音符[0.28, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=59', '6'] +21:48:23 延续时间6tick--:添加音符[0.75, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=75', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=54', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=62', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.3, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[1.8, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '189'] +21:48:23 延续时间189tick--:添加音符[0.75, 0.39375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '103'] +21:48:23 延续时间103tick--:添加音符[0.14, 0.21458333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '31'] +21:48:23 延续时间31tick--:添加音符[0.84, 0.06458333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=45', '6'] +21:48:23 延续时间6tick--:添加音符[0.84, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=43', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '147'] +21:48:23 延续时间147tick--:添加音符[0.28, 0.30625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=60', '11'] +21:48:23 延续时间11tick--:添加音符[0.28, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=56', '0'] +21:48:23 延续时间0tick--:添加音符[0.42, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '61'] +21:48:23 延续时间61tick--:添加音符[0.84, 0.12708333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '20'] +21:48:23 延续时间20tick--:添加音符[0.75, 0.041666666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=66', '114'] +21:48:23 延续时间114tick--:添加音符[1.12, 0.2375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=66', '2'] +21:48:23 延续时间2tick--:添加音符[0.7, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=58', '1'] +21:48:23 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=68', '326'] +21:48:23 延续时间326tick--:添加音符[1.5, 0.6791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '156'] +21:48:23 延续时间156tick--:添加音符[1.7, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=60', '4'] +21:48:23 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=47', '158'] +21:48:23 延续时间158tick--:添加音符[0.19, 0.32916666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '127'] +21:48:23 延续时间127tick--:添加音符[0.56, 0.26458333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=62', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=48', '3'] +21:48:23 延续时间3tick--:添加音符[0.9, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=35', '1'] +21:48:23 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '115'] +21:48:23 延续时间115tick--:添加音符[0.19, 0.23958333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=48', '333'] +21:48:23 延续时间333tick--:添加音符[0.56, 0.69375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '186'] +21:48:23 延续时间186tick--:添加音符[0.37, 0.3875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[0.9, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=57', '4'] +21:48:23 延续时间4tick--:添加音符[0.37, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=72', '2'] +21:48:23 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=61', '150'] +21:48:23 延续时间150tick--:添加音符[0.75, 0.3125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=84', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=84', '160'] +21:48:23 延续时间160tick--:添加音符[1.5, 0.3333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=74', '178'] +21:48:23 延续时间178tick--:添加音符[1.33, 0.37083333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '28'] +21:48:23 延续时间28tick--:添加音符[1.12, 0.058333333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=70', '129'] +21:48:23 延续时间129tick--:添加音符[1.12, 0.26875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=56', '4'] +21:48:23 延续时间4tick--:添加音符[0.14, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=61', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '18'] +21:48:23 延续时间18tick--:添加音符[0.56, 0.0375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '72'] +21:48:23 延续时间72tick--:添加音符[0.14, 0.15] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=59', '159'] +21:48:23 延续时间159tick--:添加音符[0.84, 0.33125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=74', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '143'] +21:48:23 延续时间143tick--:添加音符[0.28, 0.29791666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '15'] +21:48:23 延续时间15tick--:添加音符[1.33, 0.03125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=54', '9'] +21:48:23 延续时间9tick--:添加音符[0.28, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=79', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=50', '1'] +21:48:23 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '64'] +21:48:23 延续时间64tick--:添加音符[0.42, 0.13333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=70', '102'] +21:48:23 延续时间102tick--:添加音符[0.56, 0.2125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=67', '1'] +21:48:23 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=65', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '62'] +21:48:23 延续时间62tick--:添加音符[1.0, 0.12916666666666668] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '19'] +21:48:23 延续时间19tick--:添加音符[0.28, 0.03958333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '6'] +21:48:23 延续时间6tick--:添加音符[0.56, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=64', '42'] +21:48:23 延续时间42tick--:添加音符[0.42, 0.0875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '130'] +21:48:23 延续时间130tick--:添加音符[1.33, 0.2708333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=92', '6'] +21:48:23 延续时间6tick--:添加音符[1.33, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '156'] +21:48:23 延续时间156tick--:添加音符[0.9, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=53', '44'] +21:48:23 延续时间44tick--:添加音符[0.15, 0.09166666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '132'] +21:48:23 延续时间132tick--:添加音符[0.15, 0.275] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=43', '10'] +21:48:23 延续时间10tick--:添加音符[0.15, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=49', '11'] +21:48:23 延续时间11tick--:添加音符[0.3, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '14'] +21:48:23 延续时间14tick--:添加音符[0.42, 0.029166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '5'] +21:48:23 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=83', '1'] +21:48:23 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=50', '1'] +21:48:23 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=59', '2'] +21:48:23 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=51', '3'] +21:48:23 延续时间3tick--:添加音符[0.9, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '61'] +21:48:23 延续时间61tick--:添加音符[0.15, 0.12708333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.3, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '16'] +21:48:23 延续时间16tick--:添加音符[1.33, 0.03333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=54', '37'] +21:48:23 延续时间37tick--:添加音符[0.3, 0.07708333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=45', '26'] +21:48:23 延续时间26tick--:添加音符[0.44, 0.05416666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '13'] +21:48:23 延续时间13tick--:添加音符[0.75, 0.027083333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '139'] +21:48:23 延续时间139tick--:添加音符[0.9, 0.28958333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=59', '4'] +21:48:23 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=68', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=85', '1'] +21:48:23 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=55', '4'] +21:48:23 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[0.44, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '6'] +21:48:23 延续时间6tick--:添加音符[1.2, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=67', '73'] +21:48:23 延续时间73tick--:添加音符[0.44, 0.15208333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=91', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=84', '154'] +21:48:23 延续时间154tick--:添加音符[1.2, 0.32083333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=86', '134'] +21:48:23 延续时间134tick--:添加音符[1.12, 0.2791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '196'] +21:48:23 延续时间196tick--:添加音符[0.9, 0.4083333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=78', '4'] +21:48:23 延续时间4tick--:添加音符[0.67, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=71', '1'] +21:48:23 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=76', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=68', '1'] +21:48:23 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '16'] +21:48:23 延续时间16tick--:添加音符[0.44, 0.03333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '10'] +21:48:23 延续时间10tick--:添加音符[1.2, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '36'] +21:48:23 延续时间36tick--:添加音符[1.5, 0.075] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '23'] +21:48:23 延续时间23tick--:添加音符[0.75, 0.04791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '4'] +21:48:23 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '12'] +21:48:23 延续时间12tick--:添加音符[0.3, 0.025] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[1.33, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=64', '56'] +21:48:23 延续时间56tick--:添加音符[0.44, 0.11666666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '131'] +21:48:23 延续时间131tick--:添加音符[1.12, 0.27291666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=98', '5'] +21:48:23 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '141'] +21:48:23 延续时间141tick--:添加音符[1.12, 0.29375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '10'] +21:48:23 延续时间10tick--:添加音符[1.12, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '120'] +21:48:23 延续时间120tick--:添加音符[0.44, 0.25] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=48', '10'] +21:48:23 延续时间10tick--:添加音符[0.44, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '29'] +21:48:23 延续时间29tick--:添加音符[0.5, 0.06041666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=89', '10'] +21:48:23 延续时间10tick--:添加音符[0.9, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=90', '0'] +21:48:23 延续时间0tick--:添加音符[0.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=86', '1'] +21:48:23 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=82', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '134'] +21:48:23 延续时间134tick--:添加音符[0.44, 0.2791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=82', '9'] +21:48:23 延续时间9tick--:添加音符[0.44, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '153'] +21:48:23 延续时间153tick--:添加音符[0.5, 0.31875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=73', '10'] +21:48:23 延续时间10tick--:添加音符[0.5, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=84', '0'] +21:48:23 延续时间0tick--:添加音符[0.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=74', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '136'] +21:48:23 延续时间136tick--:添加音符[1.12, 0.2833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '8'] +21:48:23 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=76', '51'] +21:48:23 延续时间51tick--:添加音符[0.125, 0.10625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '163'] +21:48:23 延续时间163tick--:添加音符[0.9, 0.33958333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=95', '7'] +21:48:23 延续时间7tick--:添加音符[1.2, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=80', '1'] +21:48:23 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=71', '0'] +21:48:23 延续时间0tick--:添加音符[0.25, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[0.5, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.44, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '89'] +21:48:23 延续时间89tick--:添加音符[1.12, 0.18541666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '157'] +21:48:23 延续时间157tick--:添加音符[0.25, 0.32708333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=60', '6'] +21:48:23 延续时间6tick--:添加音符[0.25, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=90', '2'] +21:48:23 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '122'] +21:48:23 延续时间122tick--:添加音符[1.12, 0.25416666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '11'] +21:48:23 延续时间11tick--:添加音符[1.12, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=69', '0'] +21:48:23 延续时间0tick--:添加音符[0.44, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '166'] +21:48:23 延续时间166tick--:添加音符[1.2, 0.3458333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=97', '5'] +21:48:23 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=73', '1'] +21:48:23 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '132'] +21:48:23 延续时间132tick--:添加音符[1.12, 0.275] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '4'] +21:48:23 延续时间4tick--:添加音符[1.12, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=71', '1'] +21:48:23 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '156'] +21:48:23 延续时间156tick--:添加音符[0.6, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=63', '6'] +21:48:23 延续时间6tick--:添加音符[0.6, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=88', '1'] +21:48:23 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=95', '153'] +21:48:23 延续时间153tick--:添加音符[2.0, 0.31875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '217'] +21:48:23 延续时间217tick--:添加音符[1.0, 0.45208333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=66', '3'] +21:48:23 延续时间3tick--:添加音符[0.19, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=89', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[0.125, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[0.25, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.44, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '9'] +21:48:23 延续时间9tick--:添加音符[0.9, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '23'] +21:48:23 延续时间23tick--:添加音符[0.5, 0.04791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '215'] +21:48:23 延续时间215tick--:添加音符[0.19, 0.4479166666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=60', '10'] +21:48:23 延续时间10tick--:添加音符[0.19, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=88', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=80', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '143'] +21:48:23 延续时间143tick--:添加音符[1.7, 0.29791666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=77', '3'] +21:48:23 延续时间3tick--:添加音符[0.56, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=81', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=75', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=70', '162'] +21:48:23 延续时间162tick--:添加音符[0.37, 0.3375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=88', '3'] +21:48:23 延续时间3tick--:添加音符[0.9, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '153'] +21:48:23 延续时间153tick--:添加音符[1.0, 0.31875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=101', '2'] +21:48:23 延续时间2tick--:添加音符[0.75, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=57', '7'] +21:48:23 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '145'] +21:48:23 延续时间145tick--:添加音符[0.56, 0.3020833333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=57', '4'] +21:48:23 延续时间4tick--:添加音符[0.56, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=83', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=64', '128'] +21:48:23 延续时间128tick--:添加音符[0.15, 0.26666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '167'] +21:48:23 延续时间167tick--:添加音符[0.75, 0.34791666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=103', '3'] +21:48:23 延续时间3tick--:添加音符[0.75, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=105', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=90', '1'] +21:48:23 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=101', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[0.37, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '4'] +21:48:23 延续时间4tick--:添加音符[0.56, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[0.19, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '246'] +21:48:23 延续时间246tick--:添加音符[0.3, 0.5125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=75', '5'] +21:48:23 延续时间5tick--:添加音符[0.3, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=80', '0'] +21:48:23 延续时间0tick--:添加音符[0.44, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=93', '139'] +21:48:23 延续时间139tick--:添加音符[0.6, 0.28958333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '132'] +21:48:23 延续时间132tick--:添加音符[1.5, 0.275] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.75, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=108', '3'] +21:48:23 延续时间3tick--:添加音符[1.5, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=100', '1'] +21:48:23 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=77', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=97', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '150'] +21:48:23 延续时间150tick--:添加音符[0.3, 0.3125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=78', '5'] +21:48:23 延续时间5tick--:添加音符[0.3, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '133'] +21:48:23 延续时间133tick--:添加音符[0.75, 0.27708333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=90', '4'] +21:48:23 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=92', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=81', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=79', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '71'] +21:48:23 延续时间71tick--:添加音符[0.15, 0.14791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=72', '11'] +21:48:23 延续时间11tick--:添加音符[0.15, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=72', '120'] +21:48:23 延续时间120tick--:添加音符[0.14, 0.25] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '123'] +21:48:23 延续时间123tick--:添加音符[0.75, 0.25625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=102', '5'] +21:48:23 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=109', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '4'] +21:48:23 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '27'] +21:48:23 延续时间27tick--:添加音符[0.15, 0.05625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[0.14, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=100', '90'] +21:48:23 延续时间90tick--:添加音符[1.7, 0.1875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '148'] +21:48:23 延续时间148tick--:添加音符[0.28, 0.30833333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=79', '4'] +21:48:23 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=91', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=65', '7'] +21:48:23 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=87', '136'] +21:48:23 延续时间136tick--:添加音符[0.42, 0.2833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '152'] +21:48:23 延续时间152tick--:添加音符[1.0, 0.31666666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=113', '7'] +21:48:23 延续时间7tick--:添加音符[0.7, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=110', '1'] +21:48:23 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=103', '2'] +21:48:23 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=105', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[0.42, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '21'] +21:48:23 延续时间21tick--:添加音符[1.5, 0.04375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '222'] +21:48:23 延续时间222tick--:添加音符[0.28, 0.4625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=95', '12'] +21:48:23 延续时间12tick--:添加音符[0.28, 0.025] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=113', '0'] +21:48:23 延续时间0tick--:添加音符[0.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=70', '152'] +21:48:23 延续时间152tick--:添加音符[0.094, 0.31666666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '5'] +21:48:23 延续时间5tick--:添加音符[0.094, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '192'] +21:48:23 延续时间192tick--:添加音符[1.12, 0.4] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=86', '10'] +21:48:23 延续时间10tick--:添加音符[1.12, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=110', '1'] +21:48:23 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=104', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=95', '1'] +21:48:23 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=101', '1'] +21:48:23 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '49'] +21:48:23 延续时间49tick--:添加音符[1.7, 0.10208333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '15'] +21:48:23 延续时间15tick--:添加音符[0.28, 0.03125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '169'] +21:48:23 延续时间169tick--:添加音符[1.12, 0.35208333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=87', '8'] +21:48:23 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '1'] +21:48:23 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=85', '2'] +21:48:23 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=92', '163'] +21:48:23 延续时间163tick--:添加音符[0.56, 0.33958333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '148'] +21:48:23 延续时间148tick--:添加音符[1.8, 0.30833333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=101', '10'] +21:48:23 延续时间10tick--:添加音符[2.24, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=88', '1'] +21:48:23 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=89', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '143'] +21:48:23 延续时间143tick--:添加音符[0.75, 0.29791666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=81', '9'] +21:48:23 延续时间9tick--:添加音符[0.75, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=89', '1'] +21:48:23 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '136'] +21:48:23 延续时间136tick--:添加音符[2.24, 0.2833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=102', '9'] +21:48:23 延续时间9tick--:添加音符[2.24, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '129'] +21:48:23 延续时间129tick--:添加音符[1.8, 0.26875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=105', '4'] +21:48:23 延续时间4tick--:添加音符[3.0, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=90', '2'] +21:48:23 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=80', '4'] +21:48:23 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=68', '144'] +21:48:23 延续时间144tick--:添加音符[0.14, 0.3] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '61'] +21:48:23 延续时间61tick--:添加音符[1.7, 0.12708333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=83', '3'] +21:48:23 延续时间3tick--:添加音符[0.28, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=97', '1'] +21:48:23 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=94', '2'] +21:48:23 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '6'] +21:48:23 延续时间6tick--:添加音符[0.44, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '10'] +21:48:23 延续时间10tick--:添加音符[0.19, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '229'] +21:48:23 延续时间229tick--:添加音符[2.24, 0.47708333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=97', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=76', '142'] +21:48:23 延续时间142tick--:添加音符[0.67, 0.29583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=78', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=70', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '81'] +21:48:23 延续时间81tick--:添加音符[1.33, 0.16875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=77', '11'] +21:48:23 延续时间11tick--:添加音符[1.33, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '28'] +21:48:23 延续时间28tick--:添加音符[1.7, 0.058333333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=73', '7'] +21:48:23 延续时间7tick--:添加音符[1.7, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '31'] +21:48:23 延续时间31tick--:添加音符[2.67, 0.06458333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=97', '11'] +21:48:23 延续时间11tick--:添加音符[2.67, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '142'] +21:48:23 延续时间142tick--:添加音符[0.84, 0.29583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=88', '7'] +21:48:23 延续时间7tick--:添加音符[0.84, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '146'] +21:48:23 延续时间146tick--:添加音符[0.67, 0.30416666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=76', '8'] +21:48:23 延续时间8tick--:添加音符[0.67, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=89', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=89', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=76', '155'] +21:48:23 延续时间155tick--:添加音符[0.15, 0.3229166666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=92', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=96', '164'] +21:48:23 延续时间164tick--:添加音符[3.0, 0.3416666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=92', '1'] +21:48:23 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=95', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[0.56, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '21'] +21:48:23 延续时间21tick--:添加音符[0.14, 0.04375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '231'] +21:48:23 延续时间231tick--:添加音符[1.8, 0.48125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[1.5, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=85', '4'] +21:48:23 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=71', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=91', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '142'] +21:48:23 延续时间142tick--:添加音符[0.3, 0.29583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=79', '10'] +21:48:23 延续时间10tick--:添加音符[0.3, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=78', '1'] +21:48:23 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '135'] +21:48:23 延续时间135tick--:添加音符[0.3, 0.28125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=83', '6'] +21:48:23 延续时间6tick--:添加音符[0.3, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '2'] +21:48:23 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=94', '2'] +21:48:23 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=79', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=101', '149'] +21:48:23 延续时间149tick--:添加音符[1.7, 0.3104166666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '156'] +21:48:23 延续时间156tick--:添加音符[0.44, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=74', '5'] +21:48:23 延续时间5tick--:添加音符[0.44, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=91', '129'] +21:48:23 延续时间129tick--:添加音符[2.4, 0.26875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=63', '99'] +21:48:23 延续时间99tick--:添加音符[0.11, 0.20625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '12'] +21:48:23 延续时间12tick--:添加音符[0.11, 0.025] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '54'] +21:48:23 延续时间54tick--:添加音符[2.24, 0.1125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '10'] +21:48:23 延续时间10tick--:添加音符[0.44, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.3, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '19'] +21:48:23 延续时间19tick--:添加音符[0.15, 0.03958333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=103', '4'] +21:48:23 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=97', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=80', '105'] +21:48:23 延续时间105tick--:添加音符[0.44, 0.21875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=87', '161'] +21:48:23 延续时间161tick--:添加音符[2.0, 0.33541666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=87', '2'] +21:48:23 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '132'] +21:48:23 延续时间132tick--:添加音符[1.8, 0.275] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=80', '9'] +21:48:23 延续时间9tick--:添加音符[1.8, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=80', '3'] +21:48:23 延续时间3tick--:添加音符[0.9, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=70', '63'] +21:48:23 延续时间63tick--:添加音符[0.14, 0.13125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '101'] +21:48:23 延续时间101tick--:添加音符[1.12, 0.21041666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=92', '8'] +21:48:23 延续时间8tick--:添加音符[0.28, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '4'] +21:48:23 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=96', '2'] +21:48:23 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=94', '1'] +21:48:23 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=86', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=83', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '138'] +21:48:23 延续时间138tick--:添加音符[0.14, 0.2875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '108'] +21:48:23 延续时间108tick--:添加音符[0.84, 0.225] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=95', '5'] +21:48:23 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[0.28, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=78', '0'] +21:48:23 延续时间0tick--:添加音符[0.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=85', '2'] +21:48:23 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=74', '2'] +21:48:23 延续时间2tick--:添加音符[0.28, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=86', '128'] +21:48:23 延续时间128tick--:添加音符[0.9, 0.26666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=97', '194'] +21:48:23 延续时间194tick--:添加音符[0.25, 0.4041666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=98', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '261'] +21:48:23 延续时间261tick--:添加音符[1.5, 0.54375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=91', '6'] +21:48:23 延续时间6tick--:添加音符[1.5, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=84', '1'] +21:48:23 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=75', '1'] +21:48:23 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '138'] +21:48:23 延续时间138tick--:添加音符[0.5, 0.2875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=82', '3'] +21:48:23 延续时间3tick--:添加音符[0.75, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=89', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=88', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=84', '1'] +21:48:23 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '156'] +21:48:23 延续时间156tick--:添加音符[1.2, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=88', '9'] +21:48:23 延续时间9tick--:添加音符[1.2, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=83', '1'] +21:48:23 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=87', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=82', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '142'] +21:48:23 延续时间142tick--:添加音符[1.2, 0.29583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=91', '11'] +21:48:23 延续时间11tick--:添加音符[0.9, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=79', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=71', '1'] +21:48:23 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '142'] +21:48:23 延续时间142tick--:添加音符[0.6, 0.29583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=80', '4'] +21:48:23 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=75', '1'] +21:48:23 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=91', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=103', '127'] +21:48:23 延续时间127tick--:添加音符[2.4, 0.26458333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=74', '133'] +21:48:23 延续时间133tick--:添加音符[0.4, 0.27708333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '57'] +21:48:23 延续时间57tick--:添加音符[1.7, 0.11875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.25, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '5'] +21:48:23 延续时间5tick--:添加音符[1.33, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=90', '4'] +21:48:23 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=89', '0'] +21:48:23 延续时间0tick--:添加音符[0.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '139'] +21:48:23 延续时间139tick--:添加音符[2.24, 0.28958333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '2'] +21:48:23 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=82', '1'] +21:48:23 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=83', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '187'] +21:48:23 延续时间187tick--:添加音符[0.4, 0.38958333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=73', '6'] +21:48:23 延续时间6tick--:添加音符[0.4, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=95', '2'] +21:48:23 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=88', '1'] +21:48:23 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '176'] +21:48:23 延续时间176tick--:添加音符[0.4, 0.36666666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=98', '6'] +21:48:23 延续时间6tick--:添加音符[1.2, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=94', '0'] +21:48:23 延续时间0tick--:添加音符[0.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=100', '1'] +21:48:23 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=103', '2'] +21:48:23 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=78', '3'] +21:48:23 延续时间3tick--:添加音符[1.6, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=67', '147'] +21:48:23 延续时间147tick--:添加音符[0.1, 0.30625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=0', '10'] +21:48:23 延续时间10tick--:添加音符[0.1, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '115'] +21:48:23 延续时间115tick--:添加音符[0.4, 0.23958333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=90', '6'] +21:48:23 延续时间6tick--:添加音符[0.6, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=102', '0'] +21:48:23 延续时间0tick--:添加音符[0.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=76', '1'] +21:48:23 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=88', '2'] +21:48:23 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=82', '2'] +21:48:23 延续时间2tick--:添加音符[0.4, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=88', '128'] +21:48:23 延续时间128tick--:添加音符[0.14, 0.26666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '176'] +21:48:23 延续时间176tick--:添加音符[2.24, 0.36666666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[0.14, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=101', '1'] +21:48:23 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '1'] +21:48:23 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=102', '1'] +21:48:23 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '1'] +21:48:23 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=91', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '42'] +21:48:23 延续时间42tick--:添加音符[0.3, 0.0875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '4'] +21:48:23 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.14, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[1.6, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=95', '178'] +21:48:23 延续时间178tick--:添加音符[1.12, 0.37083333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=96', '2'] +21:48:23 延续时间2tick--:添加音符[0.75, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '134'] +21:48:23 延续时间134tick--:添加音符[0.28, 0.2791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=85', '11'] +21:48:23 延续时间11tick--:添加音符[0.42, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=83', '1'] +21:48:23 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '134'] +21:48:23 延续时间134tick--:添加音符[0.75, 0.2791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=94', '3'] +21:48:23 延续时间3tick--:添加音符[0.56, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=104', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=103', '1'] +21:48:23 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=83', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=91', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '121'] +21:48:23 延续时间121tick--:添加音符[0.14, 0.2520833333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '180'] +21:48:23 延续时间180tick--:添加音符[1.12, 0.375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.14, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=108', '3'] +21:48:23 延续时间3tick--:添加音符[0.84, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=100', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=105', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=99', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '0'] +21:48:23 延续时间0tick--:添加音符[0.14, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '9'] +21:48:23 延续时间9tick--:添加音符[0.42, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '14'] +21:48:23 延续时间14tick--:添加音符[0.56, 0.029166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '200'] +21:48:23 延续时间200tick--:添加音符[0.28, 0.4166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=104', '5'] +21:48:23 延续时间5tick--:添加音符[0.7, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=64', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '125'] +21:48:23 延续时间125tick--:添加音符[0.28, 0.2604166666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=91', '4'] +21:48:23 延续时间4tick--:添加音符[0.42, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=99', '118'] +21:48:23 延续时间118tick--:添加音符[1.8, 0.24583333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '40'] +21:48:23 延续时间40tick--:添加音符[1.7, 0.08333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=109', '10'] +21:48:23 延续时间10tick--:添加音符[0.56, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=97', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=113', '148'] +21:48:23 延续时间148tick--:添加音符[1.5, 0.30833333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '156'] +21:48:23 延续时间156tick--:添加音符[0.14, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '69', 'velocity=96', '4'] +21:48:23 延续时间4tick--:添加音符[1.25, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=111', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=93', '3'] +21:48:23 延续时间3tick--:添加音符[0.14, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=89', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '130'] +21:48:23 延续时间130tick--:添加音符[0.14, 0.2708333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=78', '10'] +21:48:23 延续时间10tick--:添加音符[0.14, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '151'] +21:48:23 延续时间151tick--:添加音符[0.84, 0.3145833333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=108', '8'] +21:48:23 延续时间8tick--:添加音符[1.4, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=96', '1'] +21:48:23 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=77', '2'] +21:48:23 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '74'] +21:48:23 延续时间74tick--:添加音符[0.14, 0.15416666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=90', '4'] +21:48:23 延续时间4tick--:添加音符[0.094, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=87', '2'] +21:48:23 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '9'] +21:48:23 延续时间9tick--:添加音符[0.094, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '207'] +21:48:23 延续时间207tick--:添加音符[1.12, 0.43125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=103', '4'] +21:48:23 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=102', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=91', '2'] +21:48:23 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '32'] +21:48:23 延续时间32tick--:添加音符[0.7, 0.06666666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.14, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '69', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.25, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.42, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.28, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=95', '180'] +21:48:23 延续时间180tick--:添加音符[2.24, 0.375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=81', '104'] +21:48:23 延续时间104tick--:添加音符[0.37, 0.21666666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '177'] +21:48:23 延续时间177tick--:添加音符[2.24, 0.36875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=84', '3'] +21:48:23 延续时间3tick--:添加音符[0.56, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=104', '1'] +21:48:23 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=78', '1'] +21:48:23 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=98', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '132'] +21:48:23 延续时间132tick--:添加音符[0.75, 0.275] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=93', '5'] +21:48:23 延续时间5tick--:添加音符[0.75, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=88', '4'] +21:48:23 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=44', '40'] +21:48:23 延续时间40tick--:添加音符[0.44, 0.08333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '97'] +21:48:23 延续时间97tick--:添加音符[1.8, 0.20208333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=73', '1'] +21:48:23 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '5'] +21:48:23 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=76', '2'] +21:48:23 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '138'] +21:48:23 延续时间138tick--:添加音符[1.8, 0.2875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=106', '3'] +21:48:23 延续时间3tick--:添加音符[3.0, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=88', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=79', '98'] +21:48:23 延续时间98tick--:添加音符[0.14, 0.20416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.37, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.14, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '14'] +21:48:23 延续时间14tick--:添加音符[0.19, 0.029166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.42, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[1.7, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '4'] +21:48:23 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=94', '1'] +21:48:23 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=94', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=98', '232'] +21:48:23 延续时间232tick--:添加音符[1.33, 0.48333333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=95', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=76', '124'] +21:48:23 延续时间124tick--:添加音符[0.56, 0.25833333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=79', '16'] +21:48:23 延续时间16tick--:添加音符[0.67, 0.03333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=78', '2'] +21:48:23 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '63'] +21:48:23 延续时间63tick--:添加音符[1.33, 0.13125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=82', '8'] +21:48:23 延续时间8tick--:添加音符[1.33, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '23'] +21:48:23 延续时间23tick--:添加音符[1.7, 0.04791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=67', '11'] +21:48:23 延续时间11tick--:添加音符[1.7, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '43'] +21:48:23 延续时间43tick--:添加音符[2.67, 0.08958333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=104', '10'] +21:48:23 延续时间10tick--:添加音符[2.67, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=76', '2'] +21:48:23 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '118'] +21:48:23 延续时间118tick--:添加音符[0.56, 0.24583333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=78', '10'] +21:48:23 延续时间10tick--:添加音符[0.67, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=68', '1'] +21:48:23 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=72', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '174'] +21:48:23 延续时间174tick--:添加音符[0.67, 0.3625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=75', '10'] +21:48:23 延续时间10tick--:添加音符[0.67, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=93', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=90', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=93', '131'] +21:48:23 延续时间131tick--:添加音符[1.5, 0.27291666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=67', '84'] +21:48:23 延续时间84tick--:添加音符[0.15, 0.175] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.84, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=100', '14'] +21:48:23 延续时间14tick--:添加音符[3.0, 0.029166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=90', '0'] +21:48:23 延续时间0tick--:添加音符[0.3, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=96', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '223'] +21:48:23 延续时间223tick--:添加音符[1.8, 0.46458333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '6'] +21:48:23 延续时间6tick--:添加音符[1.8, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=91', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=71', '1'] +21:48:23 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '124'] +21:48:23 延续时间124tick--:添加音符[0.3, 0.25833333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=81', '9'] +21:48:23 延续时间9tick--:添加音符[0.3, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=84', '1'] +21:48:23 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '143'] +21:48:23 延续时间143tick--:添加音符[0.9, 0.29791666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=90', '9'] +21:48:23 延续时间9tick--:添加音符[0.75, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=86', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=97', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=82', '3'] +21:48:23 延续时间3tick--:添加音符[0.9, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '142'] +21:48:23 延续时间142tick--:添加音符[0.3, 0.29583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=79', '5'] +21:48:23 延续时间5tick--:添加音符[0.3, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=103', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=95', '1'] +21:48:23 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '140'] +21:48:23 延续时间140tick--:添加音符[0.15, 0.2916666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.3, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=81', '4'] +21:48:23 延续时间4tick--:添加音符[0.15, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=87', '1'] +21:48:23 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=105', '6'] +21:48:23 延续时间6tick--:添加音符[1.8, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=95', '3'] +21:48:23 延续时间3tick--:添加音符[0.9, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=98', '138'] +21:48:23 延续时间138tick--:添加音符[2.4, 0.2875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=83', '12'] +21:48:23 延续时间12tick--:添加音符[1.2, 0.025] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '172'] +21:48:23 延续时间172tick--:添加音符[0.3, 0.35833333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[0.15, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=83', '0'] +21:48:23 延续时间0tick--:添加音符[0.11, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=82', '0'] +21:48:23 延续时间0tick--:添加音符[0.22, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[0.11, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=104', '4'] +21:48:23 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=90', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=98', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=87', '102'] +21:48:23 延续时间102tick--:添加音符[0.44, 0.2125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '156'] +21:48:23 延续时间156tick--:添加音符[2.0, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '3'] +21:48:23 延续时间3tick--:添加音符[1.0, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '107'] +21:48:23 延续时间107tick--:添加音符[1.8, 0.22291666666666668] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '11'] +21:48:23 延续时间11tick--:添加音符[1.8, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=90', '5'] +21:48:23 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '169'] +21:48:23 延续时间169tick--:添加音符[1.33, 0.35208333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=103', '2'] +21:48:23 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '2'] +21:48:23 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=99', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=101', '1'] +21:48:23 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[0.22, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=75', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '54'] +21:48:23 延续时间54tick--:添加音符[0.28, 0.1125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=87', '11'] +21:48:23 延续时间11tick--:添加音符[0.28, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '142'] +21:48:23 延续时间142tick--:添加音符[0.84, 0.29583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=87', '6'] +21:48:23 延续时间6tick--:添加音符[0.84, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=76', '6'] +21:48:23 延续时间6tick--:添加音符[1.0, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=80', '19'] +21:48:23 延续时间19tick--:添加音符[0.42, 0.03958333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=99', '128'] +21:48:23 延续时间128tick--:添加音符[0.9, 0.26666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '102'] +21:48:23 延续时间102tick--:添加音符[0.14, 0.2125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=60', '11'] +21:48:23 延续时间11tick--:添加音符[0.14, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=70', '1'] +21:48:23 延续时间1tick--:添加音符[0.125, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[0.125, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=76', '135'] +21:48:23 延续时间135tick--:添加音符[0.25, 0.28125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=85', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=93', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.14, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.42, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[1.7, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '207'] +21:48:23 延续时间207tick--:添加音符[1.5, 0.43125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.25, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=82', '3'] +21:48:23 延续时间3tick--:添加音符[1.5, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=82', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=58', '1'] +21:48:23 延续时间1tick--:添加音符[0.25, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '111'] +21:48:23 延续时间111tick--:添加音符[0.25, 0.23125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=73', '11'] +21:48:23 延续时间11tick--:添加音符[0.25, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=76', '2'] +21:48:23 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=93', '3'] +21:48:23 延续时间3tick--:添加音符[1.7, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=80', '1'] +21:48:23 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=76', '4'] +21:48:23 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '171'] +21:48:23 延续时间171tick--:添加音符[1.2, 0.35625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=98', '10'] +21:48:23 延续时间10tick--:添加音符[1.8, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=98', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=78', '1'] +21:48:23 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '150'] +21:48:23 延续时间150tick--:添加音符[1.2, 0.3125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=81', '4'] +21:48:23 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=67', '0'] +21:48:23 延续时间0tick--:添加音符[0.37, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=98', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=85', '1'] +21:48:23 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=80', '2'] +21:48:23 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.37, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '130'] +21:48:23 延续时间130tick--:添加音符[0.6, 0.2708333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=80', '4'] +21:48:23 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=75', '1'] +21:48:23 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '118'] +21:48:23 延续时间118tick--:添加音符[1.2, 0.24583333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=103', '5'] +21:48:23 延续时间5tick--:添加音符[2.4, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=76', '1'] +21:48:23 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '159'] +21:48:23 延续时间159tick--:添加音符[0.25, 0.33125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '10'] +21:48:23 延续时间10tick--:添加音符[0.9, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=93', '28'] +21:48:23 延续时间28tick--:添加音符[0.8, 0.058333333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=91', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=78', '2'] +21:48:23 延续时间2tick--:添加音符[0.4, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '161'] +21:48:23 延续时间161tick--:添加音符[2.24, 0.33541666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.4, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=88', '3'] +21:48:23 延续时间3tick--:添加音符[2.24, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=78', '2'] +21:48:23 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[0.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=84', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=72', '3'] +21:48:23 延续时间3tick--:添加音符[0.4, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=41', '20'] +21:48:23 延续时间20tick--:添加音符[1.8, 0.041666666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '171'] +21:48:23 延续时间171tick--:添加音符[0.4, 0.35625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=86', '4'] +21:48:23 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=75', '0'] +21:48:23 延续时间0tick--:添加音符[0.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=93', '0'] +21:48:23 延续时间0tick--:添加音符[0.9, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=84', '1'] +21:48:23 延续时间1tick--:添加音符[0.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=105', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '156'] +21:48:23 延续时间156tick--:添加音符[0.4, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=104', '10'] +21:48:23 延续时间10tick--:添加音符[2.0, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=97', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=90', '0'] +21:48:23 延续时间0tick--:添加音符[0.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=101', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=84', '1'] +21:48:23 延续时间1tick--:添加音符[0.2, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '134'] +21:48:23 延续时间134tick--:添加音符[0.2, 0.2791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=79', '5'] +21:48:23 延续时间5tick--:添加音符[0.2, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=77', '2'] +21:48:23 延续时间2tick--:添加音符[0.1, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.1, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '123'] +21:48:23 延续时间123tick--:添加音符[0.6, 0.25625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=88', '11'] +21:48:23 延续时间11tick--:添加音符[0.6, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=68', '0'] +21:48:23 延续时间0tick--:添加音符[0.17, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=93', '0'] +21:48:23 延续时间0tick--:添加音符[0.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=90', '1'] +21:48:23 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[0.17, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=76', '120'] +21:48:23 延续时间120tick--:添加音符[0.14, 0.25] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '180'] +21:48:23 延续时间180tick--:添加音符[0.14, 0.375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=114', '2'] +21:48:23 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=91', '1'] +21:48:23 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=93', '1'] +21:48:23 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=92', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=95', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.33, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '12'] +21:48:23 延续时间12tick--:添加音符[0.8, 0.025] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '161'] +21:48:23 延续时间161tick--:添加音符[1.12, 0.33541666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=85', '8'] +21:48:23 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=104', '2'] +21:48:23 延续时间2tick--:添加音符[0.75, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=97', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '120'] +21:48:23 延续时间120tick--:添加音符[0.28, 0.25] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=77', '4'] +21:48:23 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=70', '39'] +21:48:23 延续时间39tick--:添加音符[0.42, 0.08125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '126'] +21:48:23 延续时间126tick--:添加音符[0.75, 0.2625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=113', '4'] +21:48:23 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=92', '1'] +21:48:23 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=88', '1'] +21:48:23 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=75', '2'] +21:48:23 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=87', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '137'] +21:48:23 延续时间137tick--:添加音符[0.14, 0.28541666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=65', '9'] +21:48:23 延续时间9tick--:添加音符[0.14, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '152'] +21:48:23 延续时间152tick--:添加音符[0.28, 0.31666666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=112', '6'] +21:48:23 延续时间6tick--:添加音符[1.7, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=101', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '5'] +21:48:23 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '46'] +21:48:23 延续时间46tick--:添加音符[1.12, 0.09583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '4'] +21:48:23 延续时间4tick--:添加音符[0.14, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '185'] +21:48:23 延续时间185tick--:添加音符[1.0, 0.3854166666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=96', '4'] +21:48:23 延续时间4tick--:添加音符[0.7, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=80', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=85', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=88', '146'] +21:48:23 延续时间146tick--:添加音符[0.42, 0.30416666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '148'] +21:48:23 延续时间148tick--:添加音符[0.7, 0.30833333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=95', '6'] +21:48:23 延续时间6tick--:添加音符[0.7, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=98', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '2'] +21:48:23 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=109', '160'] +21:48:23 延续时间160tick--:添加音符[0.56, 0.3333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '169'] +21:48:23 延续时间169tick--:添加音符[0.7, 0.35208333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=101', '5'] +21:48:23 延续时间5tick--:添加音符[0.7, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=104', '2'] +21:48:23 延续时间2tick--:添加音符[1.4, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=91', '3'] +21:48:23 延续时间3tick--:添加音符[1.0, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=86', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '112'] +21:48:23 延续时间112tick--:添加音符[0.42, 0.23333333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=87', '11'] +21:48:23 延续时间11tick--:添加音符[0.42, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=110', '191'] +21:48:23 延续时间191tick--:添加音符[1.5, 0.39791666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=95', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=69', '183'] +21:48:23 延续时间183tick--:添加音符[0.19, 0.38125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=76', '2'] +21:48:23 延续时间2tick--:添加音符[0.094, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '174'] +21:48:23 延续时间174tick--:添加音符[0.19, 0.3625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=89', '4'] +21:48:23 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=69', '2'] +21:48:23 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.4, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.12, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '5'] +21:48:23 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.7, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[0.42, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=83', '128'] +21:48:23 延续时间128tick--:添加音符[0.56, 0.26666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '140'] +21:48:23 延续时间140tick--:添加音符[0.19, 0.2916666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=56', '10'] +21:48:23 延续时间10tick--:添加音符[0.19, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '190'] +21:48:23 延续时间190tick--:添加音符[0.75, 0.3958333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=81', '10'] +21:48:23 延续时间10tick--:添加音符[0.75, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=90', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '304'] +21:48:23 延续时间304tick--:添加音符[0.56, 0.6333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=56', '7'] +21:48:23 延续时间7tick--:添加音符[0.56, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '216'] +21:48:23 延续时间216tick--:添加音符[0.19, 0.45] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=36', '8'] +21:48:23 延续时间8tick--:添加音符[0.19, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '145'] +21:48:23 延续时间145tick--:添加音符[0.19, 0.3020833333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[0.75, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=39', '1'] +21:48:23 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '64', 'velocity=61', '4'] +21:48:23 延续时间4tick--:添加音符[0.94, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=42', '1'] +21:48:23 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '46'] +21:48:23 延续时间46tick--:添加音符[0.094, 0.09583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=37', '1161'] +21:48:23 延续时间1161tick--:添加音符[1.5, 2.41875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '14'] +21:48:23 延续时间14tick--:添加音符[0.19, 0.029166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.75, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '64', 'velocity=0', '4'] +21:48:23 延续时间4tick--:添加音符[0.94, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=37', '4'] +21:48:23 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=41', '30'] +21:48:23 延续时间30tick--:添加音符[2.24, 0.0625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=46', '6'] +21:48:23 延续时间6tick--:添加音符[3.0, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=51', '286'] +21:48:23 延续时间286tick--:添加音符[4.5, 0.5958333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '321'] +21:48:23 延续时间321tick--:添加音符[4.5, 0.66875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=44', '9'] +21:48:23 延续时间9tick--:添加音符[4.5, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=80', '35'] +21:48:23 延续时间35tick--:添加音符[4.0, 0.07291666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '165'] +21:48:23 延续时间165tick--:添加音符[4.5, 0.34375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=83', '5'] +21:48:23 延续时间5tick--:添加音符[4.5, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=91', '153'] +21:48:23 延续时间153tick--:添加音符[6.0, 0.31875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=57', '31'] +21:48:23 延续时间31tick--:添加音符[1.33, 0.06458333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=34', '102'] +21:48:23 延续时间102tick--:添加音符[1.7, 0.2125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '16'] +21:48:23 延续时间16tick--:添加音符[2.24, 0.03333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=44', '11'] +21:48:23 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '28'] +21:48:23 延续时间28tick--:添加音符[4.0, 0.058333333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=70', '6'] +21:48:23 延续时间6tick--:添加音符[4.0, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=66', '5'] +21:48:23 延续时间5tick--:添加音符[5.34, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '303'] +21:48:23 延续时间303tick--:添加音符[4.5, 0.63125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=59', '11'] +21:48:23 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=64', '0'] +21:48:23 延续时间0tick--:添加音符[3.36, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '327'] +21:48:23 延续时间327tick--:添加音符[4.0, 0.68125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=60', '6'] +21:48:23 延续时间6tick--:添加音符[4.0, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=35', '454'] +21:48:23 延续时间454tick--:添加音符[1.2, 0.9458333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '16'] +21:48:23 延续时间16tick--:添加音符[1.5, 0.03333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=47', '11'] +21:48:23 延续时间11tick--:添加音符[1.5, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[1.7, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[1.8, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[1.33, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '4'] +21:48:23 延续时间4tick--:添加音符[5.34, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '23'] +21:48:23 延续时间23tick--:添加音符[6.0, 0.04791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '23'] +21:48:23 延续时间23tick--:添加音符[3.36, 0.04791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=45', '3'] +21:48:23 延续时间3tick--:添加音符[1.8, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '5'] +21:48:23 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=55', '51'] +21:48:23 延续时间51tick--:添加音符[3.0, 0.10625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=47', '5'] +21:48:23 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '21'] +21:48:23 延续时间21tick--:添加音符[4.0, 0.04375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=64', '6'] +21:48:23 延续时间6tick--:添加音符[4.0, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=70', '52'] +21:48:23 延续时间52tick--:添加音符[6.0, 0.10833333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=66', '300'] +21:48:23 延续时间300tick--:添加音符[3.56, 0.625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '318'] +21:48:23 延续时间318tick--:添加音符[3.0, 0.6625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=54', '5'] +21:48:23 延续时间5tick--:添加音符[3.0, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '141'] +21:48:23 延续时间141tick--:添加音符[4.5, 0.29375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=69', '35'] +21:48:23 延续时间35tick--:添加音符[3.36, 0.07291666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '141'] +21:48:23 延续时间141tick--:添加音符[3.56, 0.29375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=63', '11'] +21:48:23 延续时间11tick--:添加音符[3.56, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=66', '159'] +21:48:23 延续时间159tick--:添加音符[4.76, 0.33125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '206'] +21:48:23 延续时间206tick--:添加音符[1.8, 0.42916666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=59', '2'] +21:48:23 延续时间2tick--:添加音符[4.5, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=60', '2'] +21:48:23 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=48', '2'] +21:48:23 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=40', '3'] +21:48:23 延续时间3tick--:添加音符[1.12, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=46', '1'] +21:48:23 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=51', '1'] +21:48:23 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '6'] +21:48:23 延续时间6tick--:添加音符[2.24, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '14'] +21:48:23 延续时间14tick--:添加音符[1.5, 0.029166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[6.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[4.76, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '276'] +21:48:23 延续时间276tick--:添加音符[4.0, 0.575] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=63', '9'] +21:48:23 延续时间9tick--:添加音符[4.0, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=59', '3'] +21:48:23 延续时间3tick--:添加音符[2.24, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '142'] +21:48:23 延续时间142tick--:添加音符[2.67, 0.29583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=68', '4'] +21:48:23 延续时间4tick--:添加音符[3.56, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=55', '1'] +21:48:23 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '233'] +21:48:23 延续时间233tick--:添加音符[3.36, 0.48541666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=60', '4'] +21:48:23 延续时间4tick--:添加音符[3.36, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '610'] +21:48:23 延续时间610tick--:添加音符[3.0, 1.2708333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '24'] +21:48:23 延续时间24tick--:添加音符[1.2, 0.05] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=42', '1'] +21:48:23 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=39', '9'] +21:48:23 延续时间9tick--:添加音符[1.2, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=43', '38'] +21:48:23 延续时间38tick--:添加音符[1.5, 0.07916666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '5'] +21:48:23 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=37', '11'] +21:48:23 延续时间11tick--:添加音符[1.8, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '12'] +21:48:23 延续时间12tick--:添加音符[3.56, 0.025] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=49', '1'] +21:48:23 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=53', '4'] +21:48:23 延续时间4tick--:添加音符[3.0, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=58', '4'] +21:48:23 延续时间4tick--:添加音符[3.56, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[2.67, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '3'] +21:48:23 延续时间3tick--:添加音符[2.0, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.36, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '11'] +21:48:23 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[4.0, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '130'] +21:48:23 延续时间130tick--:添加音符[1.33, 0.2708333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '31'] +21:48:23 延续时间31tick--:添加音符[3.56, 0.06458333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '161'] +21:48:23 延续时间161tick--:添加音符[3.0, 0.33541666666666664] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=59', '7'] +21:48:23 延续时间7tick--:添加音符[3.0, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=77', '150'] +21:48:23 延续时间150tick--:添加音符[3.36, 0.3125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=62', '1'] +21:48:23 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '188'] +21:48:23 延续时间188tick--:添加音符[2.4, 0.39166666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=72', '5'] +21:48:23 延续时间5tick--:添加音符[2.4, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=60', '1'] +21:48:23 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=72', '0'] +21:48:23 延续时间0tick--:添加音符[3.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '147'] +21:48:23 延续时间147tick--:添加音符[2.4, 0.30625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.56, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=80', '9'] +21:48:23 延续时间9tick--:添加音符[2.4, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=74', '1'] +21:48:23 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=62', '0'] +21:48:23 延续时间0tick--:添加音符[3.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '152'] +21:48:23 延续时间152tick--:添加音符[3.56, 0.31666666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=76', '6'] +21:48:23 延续时间6tick--:添加音符[3.56, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=91', '133'] +21:48:23 延续时间133tick--:添加音符[4.76, 0.27708333333333335] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=44', '156'] +21:48:23 延续时间156tick--:添加音符[0.8, 0.325] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '50'] +21:48:23 延续时间50tick--:添加音符[1.2, 0.10416666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=48', '6'] +21:48:23 延续时间6tick--:添加音符[1.2, 0.0125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '17'] +21:48:23 延续时间17tick--:添加音符[2.67, 0.035416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=73', '5'] +21:48:23 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=57', '1'] +21:48:23 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=72', '0'] +21:48:23 延续时间0tick--:添加音符[2.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=75', '3'] +21:48:23 延续时间3tick--:添加音符[4.5, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '237'] +21:48:23 延续时间237tick--:添加音符[0.8, 0.49375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.67, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[4.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=77', '8'] +21:48:23 延续时间8tick--:添加音符[1.6, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=83', '1'] +21:48:23 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=80', '1'] +21:48:23 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=63', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=59', '0'] +21:48:23 延续时间0tick--:添加音符[0.8, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=79', '2'] +21:48:23 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '188'] +21:48:23 延续时间188tick--:添加音符[3.56, 0.39166666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=96', '3'] +21:48:23 延续时间3tick--:添加音符[3.56, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=71', '0'] +21:48:23 延续时间0tick--:添加音符[0.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '180'] +21:48:23 延续时间180tick--:添加音符[0.4, 0.375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=97', '9'] +21:48:23 延续时间9tick--:添加音符[2.0, 0.01875] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=94', '1'] +21:48:23 延续时间1tick--:添加音符[4.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=87', '0'] +21:48:23 延续时间0tick--:添加音符[2.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=80', '1'] +21:48:23 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=73', '0'] +21:48:23 延续时间0tick--:添加音符[0.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=80', '0'] +21:48:23 延续时间0tick--:添加音符[3.17, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '189'] +21:48:23 延续时间189tick--:添加音符[1.0, 0.39375] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[1.8, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=106', '2'] +21:48:23 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=101', '0'] +21:48:23 延续时间0tick--:添加音符[1.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=97', '1'] +21:48:23 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=89', '1'] +21:48:23 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '58'] +21:48:23 延续时间58tick--:添加音符[0.2, 0.12083333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '84'] +21:48:23 延续时间84tick--:添加音符[4.5, 0.175] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=97', '92'] +21:48:23 延续时间92tick--:添加音符[0.6, 0.19166666666666668] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.4, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=90', '2'] +21:48:23 延续时间2tick--:添加音符[0.2, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=89', '2'] +21:48:23 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=79', '4'] +21:48:23 延续时间4tick--:添加音符[0.4, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '215'] +21:48:23 延续时间215tick--:添加音符[4.76, 0.4479166666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '8'] +21:48:23 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.36, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=104', '11'] +21:48:23 延续时间11tick--:添加音符[3.36, 0.022916666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=109', '0'] +21:48:23 延续时间0tick--:添加音符[2.24, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=103', '1'] +21:48:23 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '3'] +21:48:23 延续时间3tick--:添加音符[0.28, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '15'] +21:48:23 延续时间15tick--:添加音符[1.5, 0.03125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '5'] +21:48:23 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.2, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '2'] +21:48:23 延续时间2tick--:添加音符[0.4, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[4.0, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.6, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.5, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '1'] +21:48:23 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[3.17, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '5'] +21:48:23 延续时间5tick--:添加音符[0.8, 0.010416666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[2.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '7'] +21:48:23 延续时间7tick--:添加音符[1.6, 0.014583333333333334] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '199'] +21:48:23 延续时间199tick--:添加音符[2.24, 0.41458333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '2'] +21:48:23 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=80', '3'] +21:48:23 延续时间3tick--:添加音符[2.24, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=86', '2'] +21:48:23 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '124'] +21:48:23 延续时间124tick--:添加音符[0.28, 0.25833333333333336] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=88', '4'] +21:48:23 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=85', '0'] +21:48:23 延续时间0tick--:添加音符[0.42, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=111', '152'] +21:48:23 延续时间152tick--:添加音符[0.75, 0.31666666666666665] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=101', '1'] +21:48:23 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=102', '4'] +21:48:23 延续时间4tick--:添加音符[1.12, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=99', '3'] +21:48:23 延续时间3tick--:添加音符[1.0, 0.00625] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '128'] +21:48:23 延续时间128tick--:添加音符[0.14, 0.26666666666666666] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '33', 'velocity=70', '10'] +21:48:23 延续时间10tick--:添加音符[0.16, 0.020833333333333332] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=76', '1'] +21:48:23 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '135'] +21:48:23 延续时间135tick--:添加音符[1.8, 0.28125] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '23'] +21:48:23 延续时间23tick--:添加音符[0.14, 0.04791666666666667] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[0.28, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:23 延续时间0tick--:添加音符[1.0, 1.0] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=106', '4'] +21:48:23 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '1'] +21:48:23 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=83', '1'] +21:48:23 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:23 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=99', '4'] +21:48:24 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '9'] +21:48:24 延续时间9tick--:添加音符[2.24, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '2'] +21:48:24 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '3'] +21:48:24 延续时间3tick--:添加音符[3.36, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '33', 'velocity=0', '13'] +21:48:24 延续时间13tick--:添加音符[0.16, 0.027083333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '222'] +21:48:24 延续时间222tick--:添加音符[1.0, 0.4625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '9'] +21:48:24 延续时间9tick--:添加音符[1.12, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=94', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=90', '2'] +21:48:24 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '128'] +21:48:24 延续时间128tick--:添加音符[0.28, 0.26666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=85', '7'] +21:48:24 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=81', '2'] +21:48:24 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=89', '2'] +21:48:24 延续时间2tick--:添加音符[0.42, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '165'] +21:48:24 延续时间165tick--:添加音符[0.7, 0.34375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=108', '7'] +21:48:24 延续时间7tick--:添加音符[0.7, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '2'] +21:48:24 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=88', '1'] +21:48:24 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=87', '1'] +21:48:24 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=81', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '303'] +21:48:24 延续时间303tick--:添加音符[0.7, 0.63125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[0.14, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=108', '3'] +21:48:24 延续时间3tick--:添加音符[1.4, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=103', '1'] +21:48:24 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=99', '1'] +21:48:24 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=91', '1'] +21:48:24 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '2'] +21:48:24 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=85', '2'] +21:48:24 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '282'] +21:48:24 延续时间282tick--:添加音符[0.7, 0.5875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[0.84, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=98', '4'] +21:48:24 延续时间4tick--:添加音符[0.7, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=79', '2'] +21:48:24 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=61', '4'] +21:48:24 延续时间4tick--:添加音符[0.84, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=64', '156'] +21:48:24 延续时间156tick--:添加音符[0.094, 0.325] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=56', '0'] +21:48:24 延续时间0tick--:添加音符[0.19, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.094, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '146'] +21:48:24 延续时间146tick--:添加音符[0.19, 0.30416666666666664] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '31'] +21:48:24 延续时间31tick--:添加音符[1.12, 0.06458333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=94', '9'] +21:48:24 延续时间9tick--:添加音符[1.12, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=108', '1'] +21:48:24 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=100', '0'] +21:48:24 延续时间0tick--:添加音符[0.75, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=101', '2'] +21:48:24 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=98', '0'] +21:48:24 延续时间0tick--:添加音符[0.19, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.4, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.14, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.84, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[0.42, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '15'] +21:48:24 延续时间15tick--:添加音符[0.75, 0.03125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=61', '226'] +21:48:24 延续时间226tick--:添加音符[0.28, 0.4708333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=100', '4'] +21:48:24 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=93', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=77', '137'] +21:48:24 延续时间137tick--:添加音符[0.37, 0.28541666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '148'] +21:48:24 延续时间148tick--:添加音符[2.24, 0.30833333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=99', '9'] +21:48:24 延续时间9tick--:添加音符[4.5, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=106', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=87', '0'] +21:48:24 延续时间0tick--:添加音符[0.44, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=99', '146'] +21:48:24 延续时间146tick--:添加音符[3.36, 0.30416666666666664] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=80', '1'] +21:48:24 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=95', '2'] +21:48:24 延续时间2tick--:添加音符[4.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '123'] +21:48:24 延续时间123tick--:添加音符[2.24, 0.25625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=99', '11'] +21:48:24 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=97', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=105', '1'] +21:48:24 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=115', '145'] +21:48:24 延续时间145tick--:添加音符[6.0, 0.3020833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=104', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '212'] +21:48:24 延续时间212tick--:添加音符[0.28, 0.44166666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=110', '4'] +21:48:24 延续时间4tick--:添加音符[5.34, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.37, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=101', '1'] +21:48:24 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=104', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.44, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.75, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=83', '3'] +21:48:24 延续时间3tick--:添加音符[0.14, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '3'] +21:48:24 延续时间3tick--:添加音符[6.0, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=108', '240'] +21:48:24 延续时间240tick--:添加音符[4.5, 0.5] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=100', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=84', '156'] +21:48:24 延续时间156tick--:添加音符[0.67, 0.325] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=90', '1'] +21:48:24 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=78', '0'] +21:48:24 延续时间0tick--:添加音符[0.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '141'] +21:48:24 延续时间141tick--:添加音符[5.34, 0.29375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=106', '4'] +21:48:24 延续时间4tick--:添加音符[5.34, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=92', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=106', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=111', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '295'] +21:48:24 延续时间295tick--:添加音符[2.24, 0.6145833333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=87', '11'] +21:48:24 延续时间11tick--:添加音符[0.5, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=97', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=90', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=89', '154'] +21:48:24 延续时间154tick--:添加音符[0.15, 0.32083333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '3'] +21:48:24 延续时间3tick--:添加音符[2.24, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[5.34, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.84, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.14, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[0.15, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=111', '2'] +21:48:24 延续时间2tick--:添加音符[6.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=108', '1'] +21:48:24 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=101', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=101', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=91', '0'] +21:48:24 延续时间0tick--:添加音符[0.15, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '215'] +21:48:24 延续时间215tick--:添加音符[3.0, 0.4479166666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=91', '5'] +21:48:24 延续时间5tick--:添加音符[3.56, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=101', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=74', '2'] +21:48:24 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=86', '154'] +21:48:24 延续时间154tick--:添加音符[0.6, 0.32083333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=82', '2'] +21:48:24 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '129'] +21:48:24 延续时间129tick--:添加音符[1.8, 0.26875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[6.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=96', '10'] +21:48:24 延续时间10tick--:添加音符[2.4, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=99', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=94', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=103', '0'] +21:48:24 延续时间0tick--:添加音符[1.2, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '1'] +21:48:24 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=97', '162'] +21:48:24 延续时间162tick--:添加音符[3.36, 0.3375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=90', '3'] +21:48:24 延续时间3tick--:添加音符[1.7, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=86', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '138'] +21:48:24 延续时间138tick--:添加音符[0.9, 0.2875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=104', '8'] +21:48:24 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=102', '2'] +21:48:24 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=80', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '129'] +21:48:24 延续时间129tick--:添加音符[2.4, 0.26875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=93', '9'] +21:48:24 延续时间9tick--:添加音符[2.4, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=111', '1'] +21:48:24 延续时间1tick--:添加音符[4.76, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '148'] +21:48:24 延续时间148tick--:添加音符[1.7, 0.30833333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.6, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.2, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.76, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.15, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=111', '26'] +21:48:24 延续时间26tick--:添加音符[4.5, 0.05416666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=84', '1'] +21:48:24 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=77', '0'] +21:48:24 延续时间0tick--:添加音符[0.11, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=96', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=101', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '10'] +21:48:24 延续时间10tick--:添加音符[0.11, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=91', '103'] +21:48:24 延续时间103tick--:添加音符[0.44, 0.21458333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=90', '149'] +21:48:24 延续时间149tick--:添加音符[0.67, 0.3104166666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=108', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=100', '2'] +21:48:24 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=108', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=92', '141'] +21:48:24 延续时间141tick--:添加音符[3.56, 0.29375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '173'] +21:48:24 延续时间173tick--:添加音符[2.0, 0.36041666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=103', '3'] +21:48:24 延续时间3tick--:添加音符[3.36, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=90', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=106', '0'] +21:48:24 延续时间0tick--:添加音符[1.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '1'] +21:48:24 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=93', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.44, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '16'] +21:48:24 延续时间16tick--:添加音符[0.22, 0.03333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[0.14, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=93', '66'] +21:48:24 延续时间66tick--:添加音符[0.33, 0.1375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=80', '2'] +21:48:24 延续时间2tick--:添加音符[0.17, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '155'] +21:48:24 延续时间155tick--:添加音符[1.7, 0.3229166666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[2.0, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=105', '3'] +21:48:24 延续时间3tick--:添加音符[0.42, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=99', '0'] +21:48:24 延续时间0tick--:添加音符[1.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=88', '1'] +21:48:24 延续时间1tick--:添加音符[0.21, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=87', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=100', '145'] +21:48:24 延续时间145tick--:添加音符[0.5, 0.3020833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=92', '0'] +21:48:24 延续时间0tick--:添加音符[0.25, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '181'] +21:48:24 延续时间181tick--:添加音符[0.25, 0.3770833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=83', '4'] +21:48:24 延续时间4tick--:添加音符[2.4, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=102', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=104', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=91', '0'] +21:48:24 延续时间0tick--:添加音符[0.25, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=96', '3'] +21:48:24 延续时间3tick--:添加音符[0.125, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.21, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.17, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '2'] +21:48:24 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.33, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.42, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '177'] +21:48:24 延续时间177tick--:添加音符[1.8, 0.36875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=84', '7'] +21:48:24 延续时间7tick--:添加音符[2.4, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=96', '1'] +21:48:24 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=90', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=85', '138'] +21:48:24 延续时间138tick--:添加音符[0.5, 0.2875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=108', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=104', '2'] +21:48:24 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '151'] +21:48:24 延续时间151tick--:添加音符[1.8, 0.3145833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=101', '10'] +21:48:24 延续时间10tick--:添加音符[3.56, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=104', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=93', '1'] +21:48:24 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=82', '0'] +21:48:24 延续时间0tick--:添加音符[0.75, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '142'] +21:48:24 延续时间142tick--:添加音符[0.75, 0.29583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=86', '7'] +21:48:24 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=89', '3'] +21:48:24 延续时间3tick--:添加音符[3.56, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=91', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '128'] +21:48:24 延续时间128tick--:添加音符[0.25, 0.26666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=84', '6'] +21:48:24 延续时间6tick--:添加音符[0.5, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=67', '2'] +21:48:24 延续时间2tick--:添加音符[0.25, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=91', '3'] +21:48:24 延续时间3tick--:添加音符[3.56, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=91', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=94', '124'] +21:48:24 延续时间124tick--:添加音符[4.76, 0.25833333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[2.4, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=72', '5'] +21:48:24 延续时间5tick--:添加音符[2.4, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=58', '172'] +21:48:24 延续时间172tick--:添加音符[0.1, 0.35833333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=60', '3'] +21:48:24 延续时间3tick--:添加音符[0.2, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.1, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[0.2, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '30'] +21:48:24 延续时间30tick--:添加音符[0.125, 0.0625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '5'] +21:48:24 延续时间5tick--:添加音符[1.7, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.25, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[4.76, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '10'] +21:48:24 延续时间10tick--:添加音符[0.75, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=74', '11'] +21:48:24 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=70', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=64', '2'] +21:48:24 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '200'] +21:48:24 延续时间200tick--:添加音符[2.24, 0.4166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=83', '6'] +21:48:24 延续时间6tick--:添加音符[2.67, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=65', '1'] +21:48:24 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=59', '1'] +21:48:24 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=81', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=74', '3'] +21:48:24 延续时间3tick--:添加音符[2.24, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '166'] +21:48:24 延续时间166tick--:添加音符[0.4, 0.3458333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=76', '10'] +21:48:24 延续时间10tick--:添加音符[0.4, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=89', '1'] +21:48:24 延续时间1tick--:添加音符[0.8, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=98', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=100', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '173'] +21:48:24 延续时间173tick--:添加音符[0.6, 0.36041666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=103', '4'] +21:48:24 延续时间4tick--:添加音符[0.8, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=89', '0'] +21:48:24 延续时间0tick--:添加音符[0.6, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=84', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=96', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=78', '2'] +21:48:24 延续时间2tick--:添加音符[3.17, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '177'] +21:48:24 延续时间177tick--:添加音符[0.4, 0.36875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=84', '6'] +21:48:24 延续时间6tick--:添加音符[0.4, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=92', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=105', '2'] +21:48:24 延续时间2tick--:添加音符[1.6, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=100', '1'] +21:48:24 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '221'] +21:48:24 延续时间221tick--:添加音符[0.4, 0.46041666666666664] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=98', '4'] +21:48:24 延续时间4tick--:添加音符[0.4, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=80', '0'] +21:48:24 延续时间0tick--:添加音符[0.2, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=77', '1'] +21:48:24 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.2, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.17, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.6, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '5'] +21:48:24 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[0.5, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=103', '1'] +21:48:24 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=103', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=111', '2'] +21:48:24 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=101', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=94', '1'] +21:48:24 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=86', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '192'] +21:48:24 延续时间192tick--:添加音符[2.24, 0.4] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=100', '6'] +21:48:24 延续时间6tick--:添加音符[1.5, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=105', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '4'] +21:48:24 延续时间4tick--:添加音符[2.0, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=89', '139'] +21:48:24 延续时间139tick--:添加音符[0.42, 0.28958333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '143'] +21:48:24 延续时间143tick--:添加音符[1.5, 0.29791666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=108', '4'] +21:48:24 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=99', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=98', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '133'] +21:48:24 延续时间133tick--:添加音符[0.14, 0.27708333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '6'] +21:48:24 延续时间6tick--:添加音符[0.14, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '163'] +21:48:24 延续时间163tick--:添加音符[2.0, 0.33958333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[0.28, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=107', '3'] +21:48:24 延续时间3tick--:添加音符[3.36, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=101', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=108', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '27'] +21:48:24 延续时间27tick--:添加音符[0.42, 0.05625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.14, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[4.5, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=91', '235'] +21:48:24 延续时间235tick--:添加音符[0.7, 0.4895833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=85', '1'] +21:48:24 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=78', '4'] +21:48:24 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '106'] +21:48:24 延续时间106tick--:添加音符[0.28, 0.22083333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=78', '9'] +21:48:24 延续时间9tick--:添加音符[0.28, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '159'] +21:48:24 延续时间159tick--:添加音符[0.7, 0.33125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=84', '4'] +21:48:24 延续时间4tick--:添加音符[0.42, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=96', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=87', '2'] +21:48:24 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=79', '152'] +21:48:24 延续时间152tick--:添加音符[0.56, 0.31666666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '157'] +21:48:24 延续时间157tick--:添加音符[0.7, 0.32708333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=102', '4'] +21:48:24 延续时间4tick--:添加音符[1.4, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=106', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '1'] +21:48:24 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '154'] +21:48:24 延续时间154tick--:添加音符[0.14, 0.32083333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '172'] +21:48:24 延续时间172tick--:添加音符[0.14, 0.35833333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.42, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=108', '3'] +21:48:24 延续时间3tick--:添加音符[0.7, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=77', '1'] +21:48:24 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '3'] +21:48:24 延续时间3tick--:添加音符[1.0, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=86', '0'] +21:48:24 延续时间0tick--:添加音符[0.14, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '388'] +21:48:24 延续时间388tick--:添加音符[0.28, 0.8083333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '10'] +21:48:24 延续时间10tick--:添加音符[1.12, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=99', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=105', '1'] +21:48:24 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=90', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=93', '1'] +21:48:24 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=100', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '49'] +21:48:24 延续时间49tick--:添加音符[2.0, 0.10208333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '6'] +21:48:24 延续时间6tick--:添加音符[0.14, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +21:48:24 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '6'] +21:48:24 延续时间6tick--:添加音符[0.56, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '92'] +21:48:24 延续时间92tick--:添加音符[0.75, 0.19166666666666668] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=98', '116'] +21:48:24 延续时间116tick--:添加音符[4.5, 0.24166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=98', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '121'] +21:48:24 延续时间121tick--:添加音符[0.19, 0.2520833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=82', '3'] +21:48:24 延续时间3tick--:添加音符[0.37, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=65', '2'] +21:48:24 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '164'] +21:48:24 延续时间164tick--:添加音符[2.24, 0.3416666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=88', '3'] +21:48:24 延续时间3tick--:添加音符[3.56, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=104', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=85', '1'] +21:48:24 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=94', '2'] +21:48:24 延续时间2tick--:添加音符[4.5, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '16'] +21:48:24 延续时间16tick--:添加音符[1.12, 0.03333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=80', '126'] +21:48:24 延续时间126tick--:添加音符[0.56, 0.2625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=94', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=91', '5'] +21:48:24 延续时间5tick--:添加音符[4.0, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=88', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '114'] +21:48:24 延续时间114tick--:添加音符[0.44, 0.2375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=71', '4'] +21:48:24 延续时间4tick--:添加音符[0.44, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=87', '7'] +21:48:24 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=96', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=112', '131'] +21:48:24 延续时间131tick--:添加音符[6.0, 0.27291666666666664] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=105', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '181'] +21:48:24 延续时间181tick--:添加音符[1.5, 0.3770833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '5'] +21:48:24 延续时间5tick--:添加音符[0.37, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[6.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.19, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '4'] +21:48:24 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=98', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=105', '1'] +21:48:24 延续时间1tick--:添加音符[5.34, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '0'] +21:48:24 延续时间0tick--:添加音符[0.14, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=103', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '11'] +21:48:24 延续时间11tick--:添加音符[0.44, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '192'] +21:48:24 延续时间192tick--:添加音符[2.67, 0.4] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=93', '9'] +21:48:24 延续时间9tick--:添加音符[4.5, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=86', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=82', '146'] +21:48:24 延续时间146tick--:添加音符[0.67, 0.30416666666666664] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=79', '1'] +21:48:24 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=86', '0'] +21:48:24 延续时间0tick--:添加音符[0.84, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '150'] +21:48:24 延续时间150tick--:添加音符[0.67, 0.3125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[5.34, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=95', '7'] +21:48:24 延续时间7tick--:添加音符[0.67, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=110', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=99', '0'] +21:48:24 延续时间0tick--:添加音符[5.34, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=98', '1'] +21:48:24 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=104', '2'] +21:48:24 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=88', '164'] +21:48:24 延续时间164tick--:添加音符[0.5, 0.3416666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '141'] +21:48:24 延续时间141tick--:添加音符[0.28, 0.29375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=87', '4'] +21:48:24 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=91', '2'] +21:48:24 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '117'] +21:48:24 延续时间117tick--:添加音符[0.14, 0.24375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=82', '11'] +21:48:24 延续时间11tick--:添加音符[0.14, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '225'] +21:48:24 延续时间225tick--:添加音符[2.24, 0.46875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=111', '1'] +21:48:24 延续时间1tick--:添加音符[6.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=107', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=107', '0'] +21:48:24 延续时间0tick--:添加音符[0.3, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.84, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=95', '0'] +21:48:24 延续时间0tick--:添加音符[0.15, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=103', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[5.34, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '16'] +21:48:24 延续时间16tick--:添加音符[0.14, 0.03333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '215'] +21:48:24 延续时间215tick--:添加音符[0.3, 0.4479166666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=70', '2'] +21:48:24 延续时间2tick--:添加音符[0.3, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=96', '2'] +21:48:24 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=83', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '149'] +21:48:24 延续时间149tick--:添加音符[0.3, 0.3104166666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=77', '8'] +21:48:24 延续时间8tick--:添加音符[0.3, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=87', '1'] +21:48:24 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '99'] +21:48:24 延续时间99tick--:添加音符[6.0, 0.20625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '23'] +21:48:24 延续时间23tick--:添加音符[3.0, 0.04791666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=96', '7'] +21:48:24 延续时间7tick--:添加音符[3.0, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=98', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=98', '1'] +21:48:24 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=78', '9'] +21:48:24 延续时间9tick--:添加音符[0.9, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '121'] +21:48:24 延续时间121tick--:添加音符[0.6, 0.2520833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=80', '10'] +21:48:24 延续时间10tick--:添加音符[0.6, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=105', '1'] +21:48:24 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=102', '1'] +21:48:24 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=81', '1'] +21:48:24 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '141'] +21:48:24 延续时间141tick--:添加音符[1.8, 0.29375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=104', '4'] +21:48:24 延续时间4tick--:添加音符[3.56, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=100', '2'] +21:48:24 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=91', '129'] +21:48:24 延续时间129tick--:添加音符[2.4, 0.26875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=84', '0'] +21:48:24 延续时间0tick--:添加音符[0.11, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=108', '0'] +21:48:24 延续时间0tick--:添加音符[4.76, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=71', '1'] +21:48:24 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '10'] +21:48:24 延续时间10tick--:添加音符[0.11, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.2, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.3, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.6, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '19'] +21:48:24 延续时间19tick--:添加音符[0.15, 0.03958333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '23'] +21:48:24 延续时间23tick--:添加音符[0.22, 0.04791666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[4.76, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=111', '2'] +21:48:24 延续时间2tick--:添加音符[4.5, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=82', '2'] +21:48:24 延续时间2tick--:添加音符[0.22, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=94', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=100', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=75', '1'] +21:48:24 延续时间1tick--:添加音符[0.11, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=88', '159'] +21:48:24 延续时间159tick--:添加音符[0.44, 0.33125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '118'] +21:48:24 延续时间118tick--:添加音符[2.67, 0.24583333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=98', '4'] +21:48:24 延续时间4tick--:添加音符[4.0, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=82', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=90', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=92', '141'] +21:48:24 延续时间141tick--:添加音符[3.56, 0.29375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=93', '2'] +21:48:24 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '136'] +21:48:24 延续时间136tick--:添加音符[2.4, 0.2833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '31'] +21:48:24 延续时间31tick--:添加音符[0.11, 0.06458333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=96', '7'] +21:48:24 延续时间7tick--:添加音符[3.36, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=81', '2'] +21:48:24 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=95', '1'] +21:48:24 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '0'] +21:48:24 延续时间0tick--:添加音符[0.14, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=84', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[4.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.44, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=95', '67'] +21:48:24 延续时间67tick--:添加音符[0.33, 0.13958333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=80', '5'] +21:48:24 延续时间5tick--:添加音符[0.17, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '143'] +21:48:24 延续时间143tick--:添加音符[1.7, 0.29791666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=84', '4'] +21:48:24 延续时间4tick--:添加音符[0.21, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=89', '1'] +21:48:24 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=89', '1'] +21:48:24 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=88', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=83', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '124'] +21:48:24 延续时间124tick--:添加音符[0.28, 0.25833333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=85', '5'] +21:48:24 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=74', '1'] +21:48:24 延续时间1tick--:添加音符[0.25, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=80', '2'] +21:48:24 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '207'] +21:48:24 延续时间207tick--:添加音符[0.25, 0.43125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.17, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.21, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.33, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.42, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.14, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=104', '1'] +21:48:24 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=88', '2'] +21:48:24 延续时间2tick--:添加音符[0.25, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=102', '1'] +21:48:24 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=88', '1'] +21:48:24 延续时间1tick--:添加音符[0.125, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=86', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.5, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=45', '127'] +21:48:24 延续时间127tick--:添加音符[2.67, 0.26458333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '65'] +21:48:24 延续时间65tick--:添加音符[2.4, 0.13541666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=78', '1'] +21:48:24 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=82', '2'] +21:48:24 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=92', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=82', '1'] +21:48:24 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '150'] +21:48:24 延续时间150tick--:添加音符[0.25, 0.3125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=85', '5'] +21:48:24 延续时间5tick--:添加音符[0.5, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=102', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=72', '1'] +21:48:24 延续时间1tick--:添加音符[0.25, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=98', '2'] +21:48:24 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '153'] +21:48:24 延续时间153tick--:添加音符[0.5, 0.31875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=87', '7'] +21:48:24 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=101', '2'] +21:48:24 延续时间2tick--:添加音符[3.56, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=81', '1'] +21:48:24 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=103', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=78', '2'] +21:48:24 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '149'] +21:48:24 延续时间149tick--:添加音符[0.25, 0.3104166666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=70', '3'] +21:48:24 延续时间3tick--:添加音符[0.25, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=76', '1'] +21:48:24 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=89', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '119'] +21:48:24 延续时间119tick--:添加音符[0.5, 0.24791666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=74', '8'] +21:48:24 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=98', '1'] +21:48:24 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '1'] +21:48:24 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '143'] +21:48:24 延续时间143tick--:添加音符[2.4, 0.29791666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=93', '6'] +21:48:24 延续时间6tick--:添加音符[4.76, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=74', '3'] +21:48:24 延续时间3tick--:添加音符[2.4, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=59', '165'] +21:48:24 延续时间165tick--:添加音符[0.1, 0.34375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=52', '0'] +21:48:24 延续时间0tick--:添加音符[0.2, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=0', '11'] +21:48:24 延续时间11tick--:添加音符[0.1, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.2, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '27'] +21:48:24 延续时间27tick--:添加音符[0.25, 0.05625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[4.76, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.75, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.125, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.6, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=71', '20'] +21:48:24 延续时间20tick--:添加音符[4.5, 0.041666666666666664] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=69', '3'] +21:48:24 延续时间3tick--:添加音符[2.67, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=61', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '177'] +21:48:24 延续时间177tick--:添加音符[2.24, 0.36875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=81', '8'] +21:48:24 延续时间8tick--:添加音符[0.6, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=66', '0'] +21:48:24 延续时间0tick--:添加音符[0.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=81', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=79', '1'] +21:48:24 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=83', '204'] +21:48:24 延续时间204tick--:添加音符[0.8, 0.425] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=102', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=104', '1'] +21:48:24 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '169'] +21:48:24 延续时间169tick--:添加音符[0.8, 0.35208333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=90', '5'] +21:48:24 延续时间5tick--:添加音符[2.4, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=105', '1'] +21:48:24 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=84', '0'] +21:48:24 延续时间0tick--:添加音符[0.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=96', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=102', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=87', '2'] +21:48:24 延续时间2tick--:添加音符[3.17, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '237'] +21:48:24 延续时间237tick--:添加音符[0.4, 0.49375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=80', '10'] +21:48:24 延续时间10tick--:添加音符[0.4, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=91', '1'] +21:48:24 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=93', '0'] +21:48:24 延续时间0tick--:添加音符[0.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '5'] +21:48:24 延续时间5tick--:添加音符[0.6, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '38'] +21:48:24 延续时间38tick--:添加音符[0.4, 0.07916666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=105', '12'] +21:48:24 延续时间12tick--:添加音符[0.8, 0.025] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=102', '0'] +21:48:24 延续时间0tick--:添加音符[0.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=94', '0'] +21:48:24 延续时间0tick--:添加音符[0.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=86', '0'] +21:48:24 延续时间0tick--:添加音符[0.2, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '219'] +21:48:24 延续时间219tick--:添加音符[4.5, 0.45625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '54'] +21:48:24 延续时间54tick--:添加音符[2.24, 0.1125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=95', '4'] +21:48:24 延续时间4tick--:添加音符[3.36, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=96', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=102', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=96', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=88', '0'] +21:48:24 延续时间0tick--:添加音符[0.14, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '3'] +21:48:24 延续时间3tick--:添加音符[0.2, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=87', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.17, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '11'] +21:48:24 延续时间11tick--:添加音符[0.8, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[0.5, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '38'] +21:48:24 延续时间38tick--:添加音符[3.0, 0.07916666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '169'] +21:48:24 延续时间169tick--:添加音符[2.24, 0.35208333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=114', '5'] +21:48:24 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=99', '3'] +21:48:24 延续时间3tick--:添加音符[2.24, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=105', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '14'] +21:48:24 延续时间14tick--:添加音符[4.5, 0.029166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '115'] +21:48:24 延续时间115tick--:添加音符[0.28, 0.23958333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=83', '10'] +21:48:24 延续时间10tick--:添加音符[0.42, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=75', '2'] +21:48:24 延续时间2tick--:添加音符[0.28, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '134'] +21:48:24 延续时间134tick--:添加音符[1.5, 0.2791666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[0.28, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=108', '2'] +21:48:24 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=104', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=105', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=85', '1'] +21:48:24 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=100', '2'] +21:48:24 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '139'] +21:48:24 延续时间139tick--:添加音符[0.14, 0.28958333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=85', '11'] +21:48:24 延续时间11tick--:添加音符[0.14, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '150'] +21:48:24 延续时间150tick--:添加音符[0.28, 0.3125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[2.0, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=106', '3'] +21:48:24 延续时间3tick--:添加音符[3.36, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=99', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=93', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=107', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=104', '260'] +21:48:24 延续时间260tick--:添加音符[0.7, 0.5416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=93', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=84', '3'] +21:48:24 延续时间3tick--:添加音符[1.0, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '98'] +21:48:24 延续时间98tick--:添加音符[0.28, 0.20416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=82', '4'] +21:48:24 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '180'] +21:48:24 延续时间180tick--:添加音符[0.7, 0.375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=106', '3'] +21:48:24 延续时间3tick--:添加音符[1.12, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=106', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=94', '0'] +21:48:24 延续时间0tick--:添加音符[0.42, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '2'] +21:48:24 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=90', '114'] +21:48:24 延续时间114tick--:添加音符[0.56, 0.2375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '211'] +21:48:24 延续时间211tick--:添加音符[0.28, 0.4395833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=111', '4'] +21:48:24 延续时间4tick--:添加音符[1.4, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=114', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.14, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=102', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=95', '3'] +21:48:24 延续时间3tick--:添加音符[0.28, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=97', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=81', '1'] +21:48:24 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '23'] +21:48:24 延续时间23tick--:添加音符[0.42, 0.04791666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '27'] +21:48:24 延续时间27tick--:添加音符[0.56, 0.05625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '314'] +21:48:24 延续时间314tick--:添加音符[0.14, 0.6541666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.28, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=95', '5'] +21:48:24 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=95', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=80', '1'] +21:48:24 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=75', '1'] +21:48:24 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=95', '602'] +21:48:24 延续时间602tick--:添加音符[0.3, 1.2541666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=100', '1'] +21:48:24 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=82', '1'] +21:48:24 延续时间1tick--:添加音符[0.15, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=93', '87'] +21:48:24 延续时间87tick--:添加音符[1.12, 0.18125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '183'] +21:48:24 延续时间183tick--:添加音符[1.0, 0.38125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '129'] +21:48:24 延续时间129tick--:添加音符[1.12, 0.26875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '9'] +21:48:24 延续时间9tick--:添加音符[1.12, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=75', '10'] +21:48:24 延续时间10tick--:添加音符[0.6, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '84'] +21:48:24 延续时间84tick--:添加音符[0.9, 0.175] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '81'] +21:48:24 延续时间81tick--:添加音符[1.12, 0.16875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=84', '12'] +21:48:24 延续时间12tick--:添加音符[1.12, 0.025] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=113', '39'] +21:48:24 延续时间39tick--:添加音符[1.5, 0.08125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=110', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=46', '34'] +21:48:24 延续时间34tick--:添加音符[2.67, 0.07083333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '133'] +21:48:24 延续时间133tick--:添加音符[2.24, 0.27708333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=88', '153'] +21:48:24 延续时间153tick--:添加音符[2.0, 0.31875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '144'] +21:48:24 延续时间144tick--:添加音符[2.24, 0.3] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=90', '7'] +21:48:24 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=63', '183'] +21:48:24 延续时间183tick--:添加音符[0.17, 0.38125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=65', '31'] +21:48:24 延续时间31tick--:添加音符[0.33, 0.06458333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=89', '3'] +21:48:24 延续时间3tick--:添加音符[0.84, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.15, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.75, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '2'] +21:48:24 延续时间2tick--:添加音符[0.3, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '17'] +21:48:24 延续时间17tick--:添加音符[1.12, 0.035416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=89', '139'] +21:48:24 延续时间139tick--:添加音符[1.0, 0.28958333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '105'] +21:48:24 延续时间105tick--:添加音符[1.12, 0.21875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=67', '7'] +21:48:24 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=86', '43'] +21:48:24 延续时间43tick--:添加音符[0.67, 0.08958333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '58'] +21:48:24 延续时间58tick--:添加音符[1.0, 0.12083333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=65', '5'] +21:48:24 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=92', '76'] +21:48:24 延续时间76tick--:添加音符[1.33, 0.15833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=96', '24'] +21:48:24 延续时间24tick--:添加音符[3.36, 0.05] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=89', '3'] +21:48:24 延续时间3tick--:添加音符[1.7, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=97', '153'] +21:48:24 延续时间153tick--:添加音符[2.24, 0.31875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=88', '145'] +21:48:24 延续时间145tick--:添加音符[2.0, 0.3020833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '139'] +21:48:24 延续时间139tick--:添加音符[2.24, 0.28958333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=82', '6'] +21:48:24 延续时间6tick--:添加音符[2.24, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=61', '127'] +21:48:24 延续时间127tick--:添加音符[0.19, 0.26458333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=60', '54'] +21:48:24 延续时间54tick--:添加音符[0.37, 0.1125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=89', '1'] +21:48:24 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[3.36, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.33, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '2'] +21:48:24 延续时间2tick--:添加音符[0.17, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '6'] +21:48:24 延续时间6tick--:添加音符[0.84, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=76', '72'] +21:48:24 延续时间72tick--:添加音符[1.12, 0.15] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=81', '128'] +21:48:24 延续时间128tick--:添加音符[1.0, 0.26666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '115'] +21:48:24 延续时间115tick--:添加音符[1.12, 0.23958333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=73', '8'] +21:48:24 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=75', '62'] +21:48:24 延续时间62tick--:添加音符[0.75, 0.12916666666666668] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=94', '125'] +21:48:24 延续时间125tick--:添加音符[3.56, 0.2604166666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=93', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=87', '157'] +21:48:24 延续时间157tick--:添加音符[2.24, 0.32708333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=84', '168'] +21:48:24 延续时间168tick--:添加音符[2.0, 0.35] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '133'] +21:48:24 延续时间133tick--:添加音符[2.24, 0.27708333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=91', '5'] +21:48:24 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=54', '162'] +21:48:24 延续时间162tick--:添加音符[1.5, 0.3375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '17'] +21:48:24 延续时间17tick--:添加音符[2.0, 0.035416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=94', '8'] +21:48:24 延续时间8tick--:添加音符[3.36, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=90', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '237'] +21:48:24 延续时间237tick--:添加音符[3.56, 0.49375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[2.0, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=87', '4'] +21:48:24 延续时间4tick--:添加音符[3.56, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=63', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '164'] +21:48:24 延续时间164tick--:添加音符[2.0, 0.3416666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=92', '5'] +21:48:24 延续时间5tick--:添加音符[3.36, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=76', '2'] +21:48:24 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '116'] +21:48:24 延续时间116tick--:添加音符[0.75, 0.24166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=62', '7'] +21:48:24 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '78'] +21:48:24 延续时间78tick--:添加音符[1.5, 0.1625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=76', '4'] +21:48:24 延续时间4tick--:添加音符[3.0, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=65', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=71', '1'] +21:48:24 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '71'] +21:48:24 延续时间71tick--:添加音符[1.12, 0.14791666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=38', '6'] +21:48:24 延续时间6tick--:添加音符[1.12, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '64'] +21:48:24 延续时间64tick--:添加音符[2.24, 0.13333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=68', '4'] +21:48:24 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '141'] +21:48:24 延续时间141tick--:添加音符[1.8, 0.29375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=61', '4'] +21:48:24 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '142'] +21:48:24 延续时间142tick--:添加音符[1.5, 0.29583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=63', '6'] +21:48:24 延续时间6tick--:添加音符[1.5, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=58', '52'] +21:48:24 延续时间52tick--:添加音符[0.15, 0.10833333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.37, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '2'] +21:48:24 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '21'] +21:48:24 延续时间21tick--:添加音符[0.75, 0.04375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=89', '9'] +21:48:24 延续时间9tick--:添加音符[0.75, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=66', '1'] +21:48:24 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '39'] +21:48:24 延续时间39tick--:添加音符[0.15, 0.08125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '83'] +21:48:24 延续时间83tick--:添加音符[1.12, 0.17291666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=86', '137'] +21:48:24 延续时间137tick--:添加音符[1.0, 0.28541666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '118'] +21:48:24 延续时间118tick--:添加音符[1.12, 0.24583333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '8'] +21:48:24 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=70', '21'] +21:48:24 延续时间21tick--:添加音符[0.6, 0.04375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=71', '64'] +21:48:24 延续时间64tick--:添加音符[0.9, 0.13333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=79', '64'] +21:48:24 延续时间64tick--:添加音符[1.2, 0.13333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=101', '53'] +21:48:24 延续时间53tick--:添加音符[1.5, 0.11041666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=108', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=89', '160'] +21:48:24 延续时间160tick--:添加音符[2.24, 0.3333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=79', '149'] +21:48:24 延续时间149tick--:添加音符[2.0, 0.3104166666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '126'] +21:48:24 延续时间126tick--:添加音符[2.24, 0.2625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=76', '4'] +21:48:24 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=50', '118'] +21:48:24 延续时间118tick--:添加音符[0.17, 0.24583333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=78', '58'] +21:48:24 延续时间58tick--:添加音符[0.84, 0.12083333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.6, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.75, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '65'] +21:48:24 延续时间65tick--:添加音符[1.12, 0.13541666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '142'] +21:48:24 延续时间142tick--:添加音符[1.0, 0.29583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '108'] +21:48:24 延续时间108tick--:添加音符[1.12, 0.225] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=68', '8'] +21:48:24 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=75', '27'] +21:48:24 延续时间27tick--:添加音符[0.67, 0.05625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '73'] +21:48:24 延续时间73tick--:添加音符[1.0, 0.15208333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=63', '5'] +21:48:24 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=89', '5'] +21:48:24 延续时间5tick--:添加音符[1.33, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=98', '88'] +21:48:24 延续时间88tick--:添加音符[3.36, 0.18333333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=92', '2'] +21:48:24 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=89', '157'] +21:48:24 延续时间157tick--:添加音符[2.24, 0.32708333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=84', '140'] +21:48:24 延续时间140tick--:添加音符[2.0, 0.2916666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '148'] +21:48:24 延续时间148tick--:添加音符[2.24, 0.30833333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=83', '4'] +21:48:24 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=59', '68'] +21:48:24 延续时间68tick--:添加音符[0.19, 0.14166666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '76'] +21:48:24 延续时间76tick--:添加音符[0.67, 0.15833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.33, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.84, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[0.17, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=80', '7'] +21:48:24 延续时间7tick--:添加音符[0.9, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=59', '1'] +21:48:24 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=76', '77'] +21:48:24 延续时间77tick--:添加音符[1.12, 0.16041666666666668] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=83', '147'] +21:48:24 延续时间147tick--:添加音符[1.0, 0.30625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '121'] +21:48:24 延续时间121tick--:添加音符[1.12, 0.2520833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=71', '7'] +21:48:24 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=63', '83'] +21:48:24 延续时间83tick--:添加音符[0.75, 0.17291666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=68', '97'] +21:48:24 延续时间97tick--:添加音符[1.5, 0.20208333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=82', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=80', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=72', '150'] +21:48:24 延续时间150tick--:添加音符[2.24, 0.3125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '162'] +21:48:24 延续时间162tick--:添加音符[1.0, 0.3375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=35', '7'] +21:48:24 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=57', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '115'] +21:48:24 延续时间115tick--:添加音符[2.24, 0.23958333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=68', '11'] +21:48:24 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '197'] +21:48:24 延续时间197tick--:添加音符[1.12, 0.41041666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=79', '2'] +21:48:24 延续时间2tick--:添加音符[4.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=68', '1'] +21:48:24 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=49', '2'] +21:48:24 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '225'] +21:48:24 延续时间225tick--:添加音符[2.24, 0.46875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=73', '4'] +21:48:24 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=73', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '180'] +21:48:24 延续时间180tick--:添加音符[2.0, 0.375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=91', '6'] +21:48:24 延续时间6tick--:添加音符[3.36, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=77', '3'] +21:48:24 延续时间3tick--:添加音符[2.0, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '191'] +21:48:24 延续时间191tick--:添加音符[1.5, 0.39791666666666664] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=64', '3'] +21:48:24 延续时间3tick--:添加音符[1.5, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=84', '1'] +21:48:24 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=65', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '203'] +21:48:24 延续时间203tick--:添加音符[2.0, 0.42291666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=87', '5'] +21:48:24 延续时间5tick--:添加音符[3.36, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=76', '2'] +21:48:24 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '24'] +21:48:24 延续时间24tick--:添加音符[0.19, 0.05] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.37, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.9, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '161'] +21:48:24 延续时间161tick--:添加音符[1.8, 0.33541666666666664] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=78', '11'] +21:48:24 延续时间11tick--:添加音符[3.0, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=64', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=58', '153'] +21:48:24 延续时间153tick--:添加音符[0.3, 0.31875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.8, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '2'] +21:48:24 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=74', '70'] +21:48:24 延续时间70tick--:添加音符[2.24, 0.14583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=72', '154'] +21:48:24 延续时间154tick--:添加音符[2.0, 0.32083333333333336] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '129'] +21:48:24 延续时间129tick--:添加音符[2.24, 0.26875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=77', '5'] +21:48:24 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=44', '62'] +21:48:24 延续时间62tick--:添加音符[1.2, 0.12916666666666668] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=59', '44'] +21:48:24 延续时间44tick--:添加音符[1.8, 0.09166666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=76', '7'] +21:48:24 延续时间7tick--:添加音符[2.4, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=83', '46'] +21:48:24 延续时间46tick--:添加音符[3.0, 0.09583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=94', '1'] +21:48:24 延续时间1tick--:添加音符[6.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=74', '143'] +21:48:24 延续时间143tick--:添加音符[4.5, 0.29791666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=72', '143'] +21:48:24 延续时间143tick--:添加音符[4.0, 0.29791666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '133'] +21:48:24 延续时间133tick--:添加音符[4.5, 0.27708333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=51', '11'] +21:48:24 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=47', '151'] +21:48:24 延续时间151tick--:添加音符[0.33, 0.3145833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.2, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[4.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=47', '2'] +21:48:24 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=57', '4'] +21:48:24 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[6.0, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=75', '60'] +21:48:24 延续时间60tick--:添加音符[2.24, 0.125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=71', '140'] +21:48:24 延续时间140tick--:添加音符[2.0, 0.2916666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '138'] +21:48:24 延续时间138tick--:添加音符[2.24, 0.2875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=54', '5'] +21:48:24 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=56', '54'] +21:48:24 延续时间54tick--:添加音符[1.33, 0.1125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '33'] +21:48:24 延续时间33tick--:添加音符[2.0, 0.06875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=49', '9'] +21:48:24 延续时间9tick--:添加音符[2.0, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=67', '26'] +21:48:24 延续时间26tick--:添加音符[2.67, 0.05416666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=87', '44'] +21:48:24 延续时间44tick--:添加音符[3.36, 0.09166666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=65', '170'] +21:48:24 延续时间170tick--:添加音符[4.5, 0.3541666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=67', '120'] +21:48:24 延续时间120tick--:添加音符[4.0, 0.25] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '130'] +21:48:24 延续时间130tick--:添加音符[4.5, 0.2708333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=67', '9'] +21:48:24 延续时间9tick--:添加音符[4.5, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=52', '127'] +21:48:24 延续时间127tick--:添加音符[0.37, 0.26458333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=53', '19'] +21:48:24 延续时间19tick--:添加音符[0.75, 0.03958333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.33, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.67, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '3'] +21:48:24 延续时间3tick--:添加音符[4.0, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=72', '9'] +21:48:24 延续时间9tick--:添加音符[1.8, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '8'] +21:48:24 延续时间8tick--:添加音符[0.67, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=75', '76'] +21:48:24 延续时间76tick--:添加音符[2.24, 0.15833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=71', '150'] +21:48:24 延续时间150tick--:添加音符[2.0, 0.3125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '127'] +21:48:24 延续时间127tick--:添加音符[2.24, 0.26458333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=61', '12'] +21:48:24 延续时间12tick--:添加音符[2.24, 0.025] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=73', '65'] +21:48:24 延续时间65tick--:添加音符[1.5, 0.13541666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '46'] +21:48:24 延续时间46tick--:添加音符[2.24, 0.09583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=59', '11'] +21:48:24 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '28'] +21:48:24 延续时间28tick--:添加音符[1.8, 0.058333333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '99', 'velocity=79', '29'] +21:48:24 延续时间29tick--:添加音符[7.13, 0.06041666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=68', '162'] +21:48:24 延续时间162tick--:添加音符[4.5, 0.3375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=61', '140'] +21:48:24 延续时间140tick--:添加音符[4.0, 0.2916666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '130'] +21:48:24 延续时间130tick--:添加音符[4.5, 0.2708333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=49', '11'] +21:48:24 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=48', '159'] +21:48:24 延续时间159tick--:添加音符[3.0, 0.33125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '14'] +21:48:24 延续时间14tick--:添加音符[4.0, 0.029166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=82', '11'] +21:48:24 延续时间11tick--:添加音符[6.73, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=74', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '99', 'velocity=0', '204'] +21:48:24 延续时间204tick--:添加音符[7.13, 0.425] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '99', 'velocity=72', '11'] +21:48:24 延续时间11tick--:添加音符[7.13, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '81'] +21:48:24 延续时间81tick--:添加音符[2.24, 0.16875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=40', '5'] +21:48:24 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '103'] +21:48:24 延续时间103tick--:添加音符[4.0, 0.21458333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[6.73, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=80', '7'] +21:48:24 延续时间7tick--:添加音符[6.73, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=64', '4'] +21:48:24 延续时间4tick--:添加音符[4.0, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '173'] +21:48:24 延续时间173tick--:添加音符[3.0, 0.36041666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=56', '7'] +21:48:24 延续时间7tick--:添加音符[3.0, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=72', '11'] +21:48:24 延续时间11tick--:添加音符[6.0, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=41', '17'] +21:48:24 延续时间17tick--:添加音符[3.56, 0.035416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '126'] +21:48:24 延续时间126tick--:添加音符[4.0, 0.2625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=52', '7'] +21:48:24 延续时间7tick--:添加音符[4.0, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=61', '3'] +21:48:24 延续时间3tick--:添加音符[4.5, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '144'] +21:48:24 延续时间144tick--:添加音符[3.56, 0.3] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=71', '10'] +21:48:24 延续时间10tick--:添加音符[3.56, 0.020833333333333332] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '128'] +21:48:24 延续时间128tick--:添加音符[3.0, 0.26666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=61', '6'] +21:48:24 延续时间6tick--:添加音符[3.0, 0.0125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=52', '159'] +21:48:24 延续时间159tick--:添加音符[0.3, 0.33125] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=44', '1'] +21:48:24 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '7'] +21:48:24 延续时间7tick--:添加音符[6.0, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.56, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '3'] +21:48:24 延续时间3tick--:添加音符[0.37, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=0', '5'] +21:48:24 延续时间5tick--:添加音符[6.73, 0.010416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '99', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[7.13, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=63', '4'] +21:48:24 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=53', '173'] +21:48:24 延续时间173tick--:添加音符[2.24, 0.36041666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=51', '110'] +21:48:24 延续时间110tick--:添加音符[2.0, 0.22916666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '128'] +21:48:24 延续时间128tick--:添加音符[2.24, 0.26666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=57', '4'] +21:48:24 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=45', '30'] +21:48:24 延续时间30tick--:添加音符[1.2, 0.0625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=46', '86'] +21:48:24 延续时间86tick--:添加音符[1.8, 0.17916666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=44', '48'] +21:48:24 延续时间48tick--:添加音符[2.4, 0.1] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=77', '26'] +21:48:24 延续时间26tick--:添加音符[6.0, 0.05416666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=62', '2'] +21:48:24 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=62', '152'] +21:48:24 延续时间152tick--:添加音符[4.5, 0.31666666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=62', '153'] +21:48:24 延续时间153tick--:添加音符[4.0, 0.31875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '144'] +21:48:24 延续时间144tick--:添加音符[4.5, 0.3] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=51', '9'] +21:48:24 延续时间9tick--:添加音符[4.5, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '4'] +21:48:24 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '2'] +21:48:24 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.4, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '2'] +21:48:24 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[0.3, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '9'] +21:48:24 延续时间9tick--:添加音符[0.6, 0.01875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=45', '3'] +21:48:24 延续时间3tick--:添加音符[0.67, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=40', '17'] +21:48:24 延续时间17tick--:添加音符[0.33, 0.035416666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '3'] +21:48:24 延续时间3tick--:添加音符[6.0, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=58', '4'] +21:48:24 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=69', '36'] +21:48:24 延续时间36tick--:添加音符[2.24, 0.075] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=69', '130'] +21:48:24 延续时间130tick--:添加音符[2.0, 0.2708333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '134'] +21:48:24 延续时间134tick--:添加音符[2.24, 0.2791666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=63', '7'] +21:48:24 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=57', '148'] +21:48:24 延续时间148tick--:添加音符[1.33, 0.30833333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=78', '30'] +21:48:24 延续时间30tick--:添加音符[6.73, 0.0625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=66', '4'] +21:48:24 延续时间4tick--:添加音符[3.36, 0.008333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=52', '160'] +21:48:24 延续时间160tick--:添加音符[4.5, 0.3333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=61', '137'] +21:48:24 延续时间137tick--:添加音符[4.0, 0.28541666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '128'] +21:48:24 延续时间128tick--:添加音符[4.5, 0.26666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=50', '11'] +21:48:24 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '2'] +21:48:24 延续时间2tick--:添加音符[3.36, 0.004166666666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[6.73, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.33, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +21:48:24 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '3'] +21:48:24 延续时间3tick--:添加音符[0.33, 0.00625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=44', '12'] +21:48:24 延续时间12tick--:添加音符[0.28, 0.025] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=44', '148'] +21:48:24 延续时间148tick--:添加音符[1.12, 0.30833333333333335] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=47', '174'] +21:48:24 延续时间174tick--:添加音符[1.5, 0.3625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=44', '149'] +21:48:24 延续时间149tick--:添加音符[1.7, 0.3104166666666667] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=52', '205'] +21:48:24 延续时间205tick--:添加音符[2.24, 0.4270833333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=57', '146'] +21:48:24 延续时间146tick--:添加音符[3.0, 0.30416666666666664] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=59', '190'] +21:48:24 延续时间190tick--:添加音符[3.36, 0.3958333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '197'] +21:48:24 延续时间197tick--:添加音符[2.24, 0.41041666666666665] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=50', '8'] +21:48:24 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=37', '243'] +21:48:24 延续时间243tick--:添加音符[4.5, 0.50625] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=36', '53'] +21:48:24 延续时间53tick--:添加音符[6.0, 0.11041666666666666] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=47', '40'] +21:48:24 延续时间40tick--:添加音符[6.73, 0.08333333333333333] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '103', 'velocity=55', '57'] +21:48:24 延续时间57tick--:添加音符[8.98, 0.11875] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '2157'] +21:48:24 延续时间2157tick--:添加音符[0.28, 4.49375] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.12, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[1.7, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[2.24, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[3.36, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[4.5, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[6.0, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[6.73, 1.0] +21:48:24 音符on消息,处理后:['note_on', 'channel=0', '103', 'velocity=0', '0'] +21:48:24 延续时间0tick--:添加音符[8.98, 1.0] +21:48:24 元信息MetaMessage('end_of_track', time=1) +21:48:24 音符增加[[1.5, 0.8875], [0.75, 0.004166666666666667], [1.12, 0.0020833333333333333], [2.24, 0.7479166666666667], [1.8, 0.0020833333333333333], [2.24, 0.725], [1.8, 0.016666666666666666], [2.24, 0.004166666666666667], [1.8, 0.004166666666666667], [2.0, 0.31666666666666665], [1.7, 0.0020833333333333333], [1.8, 0.32708333333333334], [2.24, 1.0], [1.8, 0.0125], [2.24, 0.0020833333333333333], [3.0, 0.32083333333333336], [2.0, 0.4166666666666667], [2.67, 0.016666666666666666], [2.0, 0.00625], [0.56, 0.0020833333333333333], [1.0, 0.014583333333333334], [0.75, 0.029166666666666667], [3.0, 1.0], [1.7, 1.0], [1.12, 0.00625], [1.5, 0.016666666666666666], [1.8, 1.0], [2.24, 0.016666666666666666], [1.7, 0.18958333333333333], [2.24, 0.004166666666666667], [2.67, 0.78125], [2.67, 0.010416666666666666], [0.6, 1.5520833333333333], [3.0, 1.0], [1.8, 0.00625], [2.0, 0.010416666666666666], [2.24, 1.0], [2.67, 0.004166666666666667], [0.56, 0.0020833333333333333], [1.0, 1.0], [1.7, 1.0], [0.75, 0.23958333333333334], [1.8, 0.3375], [1.8, 0.0125], [0.84, 0.008333333333333333], [0.9, 0.325], [1.5, 0.3625], [1.2, 1.0], [1.7, 0.32083333333333336], [1.8, 0.3145833333333333], [1.8, 0.008333333333333333], [2.4, 0.3375], [2.24, 0.49583333333333335], [0.44, 0.00625], [0.22, 1.0], [1.33, 0.008333333333333333], [1.8, 0.014583333333333334], [0.9, 1.0], [0.6, 1.0], [0.75, 1.0], [1.5, 1.0], [1.7, 1.0], [1.2, 1.0], [0.84, 1.0], [3.0, 1.0], [2.4, 1.0], [0.22, 0.29583333333333334], [2.0, 0.5291666666666667], [1.8, 0.16458333333333333], [1.7, 0.2520833333333333], [0.56, 1.0], [1.4, 0.0020833333333333333], [0.84, 0.004166666666666667], [2.0, 0.004166666666666667], [2.24, 1.0], [1.8, 1.0], [1.33, 0.0020833333333333333], [0.44, 1.0], [0.37, 1.2416666666666667], [0.9, 0.004166666666666667], [0.75, 0.00625], [1.7, 0.11458333333333333], [0.84, 0.016666666666666666], [1.4, 1.0], [1.12, 0.6270833333333333], [1.12, 0.6791666666666667], [1.12, 0.014583333333333334], [0.75, 0.3375], [1.0, 0.008333333333333333], [0.75, 0.0020833333333333333], [1.12, 0.3416666666666667], [1.12, 0.016666666666666666], [1.5, 0.34375], [1.0, 0.40625], [0.28, 0.00625], [1.33, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.37, 0.10208333333333333], [0.9, 0.010416666666666666], [1.12, 0.010416666666666666], [0.75, 0.027083333333333334], [0.56, 0.016666666666666666], [1.12, 0.40625], [0.84, 1.0], [1.0, 0.6979166666666666], [1.33, 1.0], [1.33, 0.008333333333333333], [1.0, 0.008333333333333333], [1.5, 1.1020833333333333], [1.5, 0.01875], [1.12, 0.09375], [1.12, 0.010416666666666666], [1.0, 0.13333333333333333], [1.0, 0.022916666666666665], [0.84, 0.03333333333333333], [0.28, 0.0020833333333333333], [1.33, 0.00625], [0.75, 0.075], [0.44, 0.0020833333333333333], [0.3, 1.0], [0.6, 0.0020833333333333333], [0.6, 0.0125], [0.67, 1.8], [0.75, 0.32916666666666666], [0.75, 0.014583333333333334], [0.9, 0.39375], [1.5, 0.5520833333333334], [1.5, 0.016666666666666666], [2.24, 0.00625], [1.33, 1.0], [2.24, 0.008333333333333333], [1.5, 2.54375], [1.5, 0.020833333333333332], [1.7, 0.3729166666666667], [0.9, 0.5354166666666667], [1.8, 0.0125], [0.9, 0.008333333333333333], [0.37, 0.0020833333333333333], [1.0, 0.53125], [0.75, 1.0], [0.67, 0.0020833333333333333], [0.3, 1.0], [0.44, 0.0020833333333333333], [1.5, 1.0], [1.33, 1.0], [1.7, 0.00625], [1.12, 0.15208333333333332], [1.8, 0.7354166666666667], [1.8, 0.008333333333333333], [1.7, 0.36666666666666664], [1.5, 0.35833333333333334], [1.12, 0.31666666666666665], [0.28, 0.47708333333333336], [1.33, 0.004166666666666667], [0.84, 0.0125], [1.5, 1.0], [0.37, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.8, 1.0], [0.9, 0.027083333333333334], [1.33, 0.32083333333333336], [1.33, 0.008333333333333333], [1.33, 0.45416666666666666], [1.33, 0.0125], [1.33, 0.98125], [1.33, 0.010416666666666666], [1.7, 0.18125], [0.9, 0.17708333333333334], [1.5, 0.4375], [0.3, 1.0], [0.75, 0.00625], [1.33, 0.23333333333333334], [0.28, 1.0], [0.84, 0.010416666666666666], [1.5, 1.1354166666666667], [0.37, 0.01875], [1.5, 0.0020833333333333333], [0.42, 0.37083333333333335], [1.33, 1.0], [1.2, 0.3333333333333333], [0.44, 0.004166666666666667], [1.12, 0.3333333333333333], [0.44, 0.425], [0.67, 0.01875], [0.22, 1.0], [0.44, 0.004166666666666667], [0.56, 0.004166666666666667], [1.12, 0.0020833333333333333], [1.5, 0.0020833333333333333], [1.33, 1.0], [1.2, 1.0], [0.42, 1.0], [0.75, 0.0020833333333333333], [0.3, 0.0020833333333333333], [0.37, 0.0020833333333333333], [0.9, 0.014583333333333334], [1.12, 0.3125], [1.12, 0.375], [1.12, 0.016666666666666666], [0.67, 0.36666666666666664], [0.5, 0.008333333333333333], [0.67, 0.004166666666666667], [0.56, 0.7083333333333334], [0.56, 0.008333333333333333], [1.12, 0.2791666666666667], [1.12, 0.010416666666666666], [0.44, 0.4375], [1.2, 0.008333333333333333], [0.44, 0.00625], [0.25, 0.004166666666666667], [0.3, 0.004166666666666667], [0.67, 0.004166666666666667], [0.22, 0.0020833333333333333], [1.12, 1.0], [0.56, 0.0020833333333333333], [0.5, 1.0], [1.12, 0.058333333333333334], [1.0, 0.36666666666666664], [1.12, 0.3125], [1.12, 0.008333333333333333], [1.2, 0.35833333333333334], [1.2, 0.0125], [1.12, 0.3229166666666667], [1.12, 0.01875], [1.2, 0.3333333333333333], [1.2, 0.010416666666666666], [2.0, 0.3458333333333333], [1.0, 0.47708333333333336], [1.7, 0.0020833333333333333], [0.37, 0.004166666666666667], [1.0, 0.004166666666666667], [1.2, 0.2708333333333333], [1.12, 1.0], [0.25, 1.0], [2.0, 0.0020833333333333333], [0.3, 0.0020833333333333333], [1.8, 0.24791666666666667], [1.7, 0.35833333333333334], [1.7, 0.022916666666666665], [0.9, 0.3875], [1.0, 0.03333333333333333], [1.5, 0.475], [0.44, 0.2916666666666667], [1.7, 0.08125], [1.7, 0.01875], [1.5, 0.42916666666666664], [1.8, 0.014583333333333334], [1.5, 0.008333333333333333], [0.3, 0.0020833333333333333], [1.8, 0.00625], [0.37, 0.004166666666666667], [1.7, 0.008333333333333333], [1.7, 0.03958333333333333], [1.33, 0.0020833333333333333], [1.5, 0.3104166666666667], [1.5, 0.022916666666666665], [1.2, 0.0020833333333333333], [1.7, 0.32708333333333334], [1.33, 0.016666666666666666], [1.7, 0.00625], [1.33, 0.0020833333333333333], [1.5, 0.40625], [1.8, 1.0], [1.8, 0.0125], [1.5, 0.0020833333333333333], [1.7, 0.7541666666666667], [1.7, 0.022916666666666665], [1.5, 0.39375], [1.5, 0.008333333333333333], [1.7, 0.5666666666666667], [1.7, 0.016666666666666666], [0.28, 0.004166666666666667], [1.12, 0.0125], [0.75, 0.00625], [1.33, 0.3333333333333333], [1.5, 1.0], [1.2, 0.0020833333333333333], [1.8, 1.0], [0.9, 1.0], [0.3, 1.0], [0.7, 0.9479166666666666], [0.56, 0.004166666666666667], [1.5, 0.8041666666666667], [1.7, 0.33958333333333335], [1.7, 0.01875], [0.19, 0.5375], [1.12, 0.004166666666666667], [1.8, 0.0020833333333333333], [1.12, 0.00625], [0.28, 0.03958333333333333], [0.75, 1.0], [1.5, 0.010416666666666666], [1.7, 0.008333333333333333], [0.7, 0.0125], [0.56, 0.016666666666666666], [0.56, 0.9895833333333334], [1.8, 0.3541666666666667], [1.8, 0.0125], [1.12, 0.004166666666666667], [1.12, 0.010416666666666666], [0.75, 0.0020833333333333333], [0.19, 0.08958333333333333], [1.7, 0.17083333333333334], [0.84, 0.010416666666666666], [1.5, 0.3729166666666667], [0.9, 0.008333333333333333], [1.12, 0.28541666666666665], [1.12, 0.016666666666666666], [0.84, 0.43125], [0.28, 0.008333333333333333], [1.33, 0.0020833333333333333], [0.84, 0.010416666666666666], [1.0, 0.004166666666666667], [1.5, 0.0625], [1.7, 1.0], [0.9, 1.0], [1.12, 1.0], [0.75, 0.0020833333333333333], [1.8, 1.0], [0.56, 0.0020833333333333333], [1.33, 0.49583333333333335], [1.33, 0.025], [1.33, 0.32708333333333334], [1.33, 0.025], [0.67, 1.0], [0.84, 0.34375], [0.84, 0.010416666666666666], [1.33, 0.725], [1.33, 0.016666666666666666], [0.9, 0.32916666666666666], [0.15, 0.50625], [1.5, 0.00625], [0.75, 0.014583333333333334], [0.28, 0.0875], [1.0, 0.025], [0.67, 1.0], [1.33, 1.0], [0.84, 0.004166666666666667], [0.44, 0.7479166666666667], [0.75, 0.17916666666666667], [0.75, 0.016666666666666666], [0.9, 0.04791666666666667], [0.9, 0.022916666666666665], [0.6, 0.05], [1.5, 0.03958333333333333], [1.5, 0.010416666666666666], [1.33, 0.20416666666666666], [1.2, 0.34791666666666665], [0.67, 0.00625], [1.12, 0.3104166666666667], [0.15, 0.37916666666666665], [0.44, 0.016666666666666666], [0.67, 1.0], [1.12, 1.0], [1.12, 0.0125], [0.9, 0.0020833333333333333], [0.67, 0.00625], [0.44, 1.0], [0.56, 0.004166666666666667], [0.33, 0.0020833333333333333], [0.9, 0.0020833333333333333], [0.5, 0.0020833333333333333], [1.33, 1.0], [1.5, 1.0], [1.2, 0.00625], [0.6, 0.0020833333333333333], [0.75, 0.027083333333333334], [1.12, 0.5104166666666666], [1.12, 0.016666666666666666], [0.5, 0.33541666666666664], [1.12, 1.0], [1.12, 0.016666666666666666], [0.5, 0.00625], [0.67, 0.32916666666666666], [0.67, 0.01875], [0.56, 0.38125], [0.56, 0.025], [1.12, 0.6479166666666667], [1.12, 0.022916666666666665], [0.9, 0.3458333333333333], [1.2, 0.014583333333333334], [0.44, 1.0], [0.9, 0.008333333333333333], [0.6, 1.0], [0.44, 0.00625], [0.67, 0.010416666666666666], [1.12, 1.0], [0.56, 1.0], [0.5, 0.03958333333333333], [0.33, 0.03125], [1.12, 0.23333333333333334], [1.0, 0.375], [1.12, 0.2708333333333333], [0.5, 0.022916666666666665], [1.12, 1.0], [1.2, 0.3625], [1.2, 0.020833333333333332], [0.67, 0.0020833333333333333], [0.6, 0.3125], [1.12, 1.0], [0.6, 0.0125], [1.12, 0.004166666666666667], [0.9, 0.33541666666666664], [1.2, 1.0], [1.2, 0.010416666666666666], [0.9, 1.0], [2.0, 0.3333333333333333], [0.19, 0.39375], [1.0, 0.11041666666666666], [1.7, 0.016666666666666666], [0.37, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.44, 0.10833333333333334], [0.67, 0.0020833333333333333], [0.9, 1.0], [1.2, 1.0], [1.12, 1.0], [0.5, 0.0020833333333333333], [0.6, 1.0], [2.0, 1.0], [1.8, 0.48541666666666666], [1.12, 0.0020833333333333333], [1.0, 0.32916666666666666], [1.7, 1.0], [1.7, 0.0125], [0.56, 1.0], [1.0, 0.0020833333333333333], [0.37, 0.30625], [0.37, 0.020833333333333332], [0.9, 0.0020833333333333333], [0.75, 0.3458333333333333], [0.56, 0.31875], [0.56, 0.010416666666666666], [1.0, 0.27708333333333335], [1.0, 0.01875], [0.15, 0.20625], [1.5, 0.21666666666666667], [0.3, 1.0], [0.37, 0.029166666666666667], [1.0, 0.022916666666666665], [1.12, 1.0], [0.75, 0.008333333333333333], [0.56, 1.0], [0.9, 1.0], [1.8, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.19, 0.00625], [0.3, 0.43333333333333335], [0.3, 0.022916666666666665], [0.44, 1.0], [0.6, 0.35208333333333336], [2.0, 0.33541666666666664], [1.0, 0.0020833333333333333], [0.3, 0.29375], [0.3, 0.0125], [1.5, 0.33958333333333335], [1.5, 0.020833333333333332], [0.15, 0.33125], [0.15, 0.014583333333333334], [0.3, 0.008333333333333333], [1.0, 0.425], [1.5, 1.0], [0.75, 0.010416666666666666], [1.12, 0.004166666666666667], [1.5, 1.0], [1.0, 0.004166666666666667], [0.14, 0.004166666666666667], [0.28, 1.0], [0.6, 0.022916666666666665], [2.0, 0.0020833333333333333], [0.15, 0.08125], [0.44, 0.016666666666666666], [1.7, 0.10625], [0.14, 0.18333333333333332], [0.28, 0.11041666666666666], [0.28, 0.010416666666666666], [0.14, 0.00625], [0.42, 0.28958333333333336], [0.14, 0.09375], [1.0, 0.27291666666666664], [0.7, 0.0020833333333333333], [0.56, 0.0020833333333333333], [1.0, 0.00625], [0.75, 0.14791666666666667], [0.42, 0.0020833333333333333], [1.5, 0.04791666666666667], [0.42, 0.37916666666666665], [1.12, 0.9333333333333333], [0.75, 0.020833333333333332], [1.12, 0.0020833333333333333], [0.9, 1.0], [0.37, 0.0020833333333333333], [0.19, 0.004166666666666667], [0.7, 0.004166666666666667], [0.56, 1.0], [1.7, 0.0020833333333333333], [0.42, 0.00625], [0.28, 0.014583333333333334], [1.0, 1.0], [0.19, 0.16041666666666668], [1.12, 0.35208333333333336], [2.24, 0.008333333333333333], [1.8, 0.0020833333333333333], [1.12, 0.004166666666666667], [0.37, 0.225], [0.37, 0.008333333333333333], [0.56, 1.0], [0.75, 0.34375], [1.8, 1.0], [2.24, 1.0], [2.24, 0.008333333333333333], [1.8, 0.0020833333333333333], [0.75, 1.0], [2.0, 0.31666666666666665], [1.7, 0.0020833333333333333], [0.9, 0.3416666666666667], [2.24, 1.0], [0.9, 0.010416666666666666], [2.24, 1.0], [3.0, 0.3333333333333333], [1.7, 0.39166666666666666], [2.67, 0.008333333333333333], [0.28, 1.0], [1.7, 0.0020833333333333333], [0.9, 0.08125], [0.75, 0.0020833333333333333], [0.37, 1.0], [0.56, 1.0], [1.8, 1.0], [2.0, 0.0020833333333333333], [1.12, 1.0], [2.24, 1.0], [3.0, 0.004166666666666667], [2.24, 0.4875], [1.33, 0.0020833333333333333], [0.67, 0.3020833333333333], [0.84, 0.0020833333333333333], [0.56, 1.0], [1.33, 0.2125], [1.33, 0.010416666666666666], [1.7, 0.05416666666666667], [1.7, 0.020833333333333332], [2.67, 0.06041666666666667], [2.67, 0.014583333333333334], [1.0, 0.0020833333333333333], [0.84, 0.2708333333333333], [0.84, 0.014583333333333334], [0.67, 0.3854166666666667], [1.33, 1.0], [1.7, 1.0], [0.67, 0.0125], [1.33, 1.0], [1.7, 1.0], [0.15, 0.3125], [1.5, 0.004166666666666667], [0.15, 0.375], [0.15, 0.01875], [3.0, 1.0], [0.3, 1.0], [1.8, 0.0020833333333333333], [0.28, 0.008333333333333333], [2.24, 1.0], [0.56, 1.0], [2.67, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.67, 0.0020833333333333333], [0.84, 0.0020833333333333333], [1.33, 1.0], [1.0, 1.0], [1.5, 0.41458333333333336], [1.8, 1.0], [1.5, 0.01875], [1.8, 1.0], [0.9, 0.004166666666666667], [3.0, 0.28125], [0.3, 0.016666666666666666], [0.3, 0.020833333333333332], [0.44, 1.0], [0.9, 0.3145833333333333], [1.5, 1.0], [1.5, 0.016666666666666666], [0.6, 0.0020833333333333333], [0.75, 1.0], [0.9, 0.0020833333333333333], [1.7, 0.21041666666666667], [0.84, 0.0020833333333333333], [0.9, 0.3145833333333333], [1.8, 1.0], [0.9, 0.016666666666666666], [1.8, 0.0020833333333333333], [1.5, 0.3020833333333333], [1.2, 0.010416666666666666], [2.4, 1.0], [1.5, 0.004166666666666667], [0.15, 0.14583333333333334], [0.22, 0.16041666666666668], [0.44, 0.0625], [1.8, 1.0], [0.6, 0.008333333333333333], [0.44, 1.0], [1.5, 0.0020833333333333333], [0.75, 1.0], [0.84, 1.0], [1.2, 1.0], [1.7, 1.0], [2.4, 1.0], [0.9, 0.0020833333333333333], [1.8, 0.004166666666666667], [1.33, 1.0], [2.24, 1.0], [1.12, 0.004166666666666667], [0.3, 0.025], [0.44, 0.17708333333333334], [0.44, 0.020833333333333332], [0.67, 0.30833333333333335], [2.0, 0.0020833333333333333], [1.0, 0.004166666666666667], [1.8, 0.2875], [1.8, 0.008333333333333333], [0.9, 1.0], [1.0, 0.375], [1.33, 1.0], [1.7, 0.010416666666666666], [1.33, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.12, 0.010416666666666666], [0.9, 1.0], [2.0, 1.0], [0.44, 1.0], [0.67, 0.0020833333333333333], [2.24, 1.0], [1.8, 1.0], [0.22, 0.03958333333333333], [0.28, 0.12291666666666666], [0.5, 0.375], [0.84, 0.0020833333333333333], [0.125, 0.4395833333333333], [1.8, 0.3020833333333333], [0.25, 1.0], [1.2, 0.0020833333333333333], [1.5, 1.0], [0.9, 0.010416666666666666], [0.28, 1.0], [0.5, 0.004166666666666667], [1.7, 1.0], [0.84, 0.0020833333333333333], [1.0, 0.035416666666666666], [1.33, 1.0], [1.2, 0.36875], [1.5, 1.0], [1.2, 0.014583333333333334], [1.5, 1.0], [0.75, 0.3125], [1.33, 0.004166666666666667], [1.7, 1.0], [0.5, 0.0020833333333333333], [1.2, 0.3541666666666667], [1.5, 1.0], [1.8, 1.0], [0.6, 0.010416666666666666], [1.8, 1.0], [1.5, 1.0], [1.2, 0.0020833333333333333], [0.9, 0.30833333333333335], [1.2, 1.0], [1.5, 1.0], [1.8, 1.0], [1.8, 0.010416666666666666], [1.5, 0.0020833333333333333], [0.9, 1.0], [1.2, 0.0020833333333333333], [0.75, 0.30625], [1.2, 1.0], [1.8, 1.0], [1.2, 0.008333333333333333], [1.8, 1.0], [0.75, 1.0], [2.4, 0.3145833333333333], [0.125, 0.07708333333333334], [0.4, 0.25833333333333336], [1.33, 0.06041666666666667], [1.8, 0.016666666666666666], [2.24, 0.00625], [1.33, 1.0], [1.12, 1.0], [0.8, 1.0], [1.8, 0.0020833333333333333], [1.5, 0.010416666666666666], [1.7, 0.0020833333333333333], [0.5, 1.0], [0.9, 1.0], [0.6, 1.0], [0.75, 1.0], [1.2, 1.0], [2.4, 1.0], [0.25, 0.008333333333333333], [1.12, 0.27291666666666664], [1.33, 1.0], [2.24, 1.0], [2.24, 0.0125], [1.12, 0.004166666666666667], [1.33, 1.0], [0.6, 0.23333333333333334], [1.8, 0.15], [1.8, 0.010416666666666666], [0.9, 1.0], [0.4, 0.42083333333333334], [2.0, 0.0125], [1.2, 0.00625], [1.0, 1.0], [1.6, 0.0020833333333333333], [0.4, 1.0], [0.2, 0.004166666666666667], [0.2, 0.2791666666666667], [0.2, 0.022916666666666665], [0.6, 0.29791666666666666], [0.8, 1.0], [0.6, 0.0125], [0.8, 0.004166666666666667], [0.5, 1.0], [0.14, 0.35833333333333334], [0.14, 0.3125], [1.12, 1.0], [2.24, 1.0], [0.28, 0.008333333333333333], [2.24, 1.0], [1.12, 1.0], [1.5, 0.0020833333333333333], [1.7, 1.0], [0.14, 0.0020833333333333333], [0.4, 0.0125], [2.0, 0.0020833333333333333], [0.9, 1.0], [1.33, 1.0], [1.2, 1.0], [1.8, 1.0], [0.8, 1.0], [1.0, 0.0020833333333333333], [1.6, 1.0], [0.6, 1.0], [0.5, 0.0020833333333333333], [0.2, 0.00625], [0.42, 0.5833333333333334], [0.75, 1.0], [1.0, 0.0020833333333333333], [1.25, 0.0125], [1.25, 0.010416666666666666], [0.28, 0.20833333333333334], [0.28, 0.014583333333333334], [0.75, 0.36875], [1.0, 1.0], [1.12, 1.0], [1.5, 1.0], [1.5, 0.008333333333333333], [0.75, 1.0], [1.12, 0.0020833333333333333], [1.0, 1.0], [0.56, 0.3145833333333333], [0.75, 0.29791666666666666], [1.0, 0.016666666666666666], [1.12, 1.0], [1.7, 1.0], [0.75, 0.008333333333333333], [1.7, 1.0], [1.12, 1.0], [1.0, 0.0020833333333333333], [0.42, 0.29375], [0.42, 0.01875], [0.14, 0.3645833333333333], [1.0, 1.0], [1.12, 1.0], [0.14, 0.022916666666666665], [0.7, 1.0], [1.12, 1.0], [1.0, 0.0020833333333333333], [0.56, 0.014583333333333334], [1.7, 1.0], [0.42, 1.0], [1.5, 1.0], [0.28, 0.0020833333333333333], [0.75, 0.022916666666666665], [2.24, 0.016666666666666666], [0.14, 0.23958333333333334], [0.28, 0.008333333333333333], [0.14, 0.004166666666666667], [0.7, 0.2604166666666667], [1.0, 1.0], [1.12, 1.0], [0.7, 0.010416666666666666], [1.12, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.14, 0.2708333333333333], [0.28, 1.0], [0.28, 0.010416666666666666], [0.14, 0.008333333333333333], [0.7, 0.34791666666666665], [1.0, 1.0], [1.12, 1.0], [0.42, 0.022916666666666665], [1.12, 1.0], [0.21, 1.0], [0.7, 1.0], [1.0, 0.0020833333333333333], [0.21, 0.008333333333333333], [0.14, 0.004166666666666667], [0.28, 0.38333333333333336], [0.7, 0.016666666666666666], [0.28, 0.00625], [0.7, 0.0020833333333333333], [0.56, 0.0020833333333333333], [0.19, 0.34375], [0.094, 1.0], [0.094, 0.014583333333333334], [0.19, 0.36666666666666664], [1.12, 1.0], [1.8, 0.010416666666666666], [1.12, 1.0], [0.19, 0.0020833333333333333], [1.5, 0.004166666666666667], [0.56, 0.010416666666666666], [0.28, 1.0], [0.42, 1.0], [0.7, 0.0020833333333333333], [1.0, 0.00625], [1.8, 0.4479166666666667], [1.8, 0.014583333333333334], [2.24, 0.004166666666666667], [0.37, 0.30625], [0.56, 1.0], [0.37, 0.33125], [1.8, 1.0], [2.24, 1.0], [2.24, 0.020833333333333332], [1.8, 0.0020833333333333333], [0.37, 0.0020833333333333333], [2.0, 0.29791666666666666], [1.7, 0.0020833333333333333], [0.9, 0.28541666666666665], [2.24, 0.04583333333333333], [2.24, 0.010416666666666666], [3.0, 0.30625], [2.67, 0.0625], [2.67, 0.020833333333333332], [0.14, 0.12291666666666666], [1.7, 0.19791666666666666], [0.19, 0.0020833333333333333], [0.28, 0.004166666666666667], [2.67, 1.0], [1.7, 0.0020833333333333333], [0.56, 1.0], [0.9, 1.0], [2.0, 1.0], [3.0, 0.0020833333333333333], [1.5, 1.0], [1.8, 1.0], [2.24, 1.0], [0.37, 0.00625], [1.12, 1.0], [0.14, 0.2708333333333333], [2.24, 0.24791666666666667], [1.33, 1.0], [0.56, 0.2791666666666667], [0.67, 0.0020833333333333333], [0.84, 0.004166666666666667], [1.33, 0.12291666666666666], [1.33, 0.020833333333333332], [1.7, 0.075], [1.7, 0.020833333333333332], [2.67, 0.10833333333333334], [2.67, 0.014583333333333334], [1.0, 0.004166666666666667], [0.84, 0.3333333333333333], [2.24, 1.0], [0.84, 0.020833333333333332], [2.24, 1.0], [0.67, 0.29791666666666666], [1.7, 1.0], [1.0, 0.016666666666666666], [0.67, 0.004166666666666667], [1.7, 0.0020833333333333333], [1.0, 0.004166666666666667], [1.33, 0.27708333333333335], [1.33, 0.020833333333333332], [0.15, 0.11458333333333333], [0.3, 0.2708333333333333], [1.5, 1.0], [3.0, 0.0020833333333333333], [1.8, 1.0], [0.56, 0.004166666666666667], [0.28, 0.0020833333333333333], [1.33, 0.00625], [2.67, 1.0], [1.7, 1.0], [0.67, 0.025], [0.84, 1.0], [1.0, 1.0], [2.24, 0.14375], [1.5, 0.35208333333333336], [1.8, 1.0], [1.5, 0.020833333333333332], [0.9, 0.0020833333333333333], [1.8, 1.0], [0.3, 0.26666666666666666], [0.3, 0.014583333333333334], [0.44, 0.1375], [0.9, 0.21458333333333332], [1.5, 1.0], [0.75, 0.022916666666666665], [0.6, 1.0], [1.5, 1.0], [0.9, 1.0], [1.7, 0.36041666666666666], [0.84, 0.004166666666666667], [0.44, 0.3], [0.9, 1.0], [1.8, 1.0], [0.9, 0.008333333333333333], [0.44, 0.0020833333333333333], [1.8, 1.0], [2.4, 0.28958333333333336], [0.22, 0.32083333333333336], [1.8, 0.06875], [0.3, 0.0020833333333333333], [2.24, 1.0], [1.33, 1.0], [0.6, 1.0], [0.9, 1.0], [0.44, 0.0020833333333333333], [0.75, 1.0], [2.4, 1.0], [1.5, 1.0], [0.84, 1.0], [1.8, 1.0], [1.7, 1.0], [1.12, 1.0], [0.15, 0.008333333333333333], [3.0, 1.0], [0.44, 0.2125], [0.67, 0.30416666666666664], [2.0, 1.0], [1.0, 0.0020833333333333333], [1.8, 0.28125], [1.8, 0.010416666666666666], [0.9, 0.0020833333333333333], [0.17, 0.25416666666666665], [1.0, 0.13333333333333333], [1.33, 1.0], [0.84, 0.014583333333333334], [1.33, 0.004166666666666667], [1.7, 0.0020833333333333333], [0.14, 0.0020833333333333333], [1.0, 1.0], [1.12, 0.03333333333333333], [0.22, 1.0], [0.44, 1.0], [2.24, 1.0], [0.9, 1.0], [0.67, 0.0020833333333333333], [2.0, 0.0020833333333333333], [0.17, 1.0], [1.8, 1.0], [0.14, 0.04791666666666667], [0.28, 0.07708333333333334], [0.84, 0.3229166666666667], [0.84, 0.010416666666666666], [0.5, 0.004166666666666667], [0.9, 0.3145833333333333], [0.25, 0.4979166666666667], [1.8, 0.004166666666666667], [1.5, 1.0], [0.5, 0.0020833333333333333], [0.28, 1.0], [0.9, 1.0], [1.7, 0.0020833333333333333], [0.84, 1.0], [1.0, 0.008333333333333333], [1.33, 0.014583333333333334], [1.5, 0.2875], [1.5, 0.022916666666666665], [1.2, 0.0020833333333333333], [0.5, 0.27291666666666664], [1.7, 1.0], [1.33, 1.0], [1.2, 0.3729166666666667], [1.5, 1.0], [1.8, 1.0], [0.6, 0.008333333333333333], [1.5, 0.0020833333333333333], [1.8, 1.0], [1.2, 1.0], [1.2, 0.3104166666666667], [1.8, 1.0], [1.5, 0.016666666666666666], [1.8, 0.004166666666666667], [1.2, 0.0020833333333333333], [0.9, 0.0020833333333333333], [1.5, 0.010416666666666666], [1.2, 0.28541666666666665], [1.8, 1.0], [1.8, 0.010416666666666666], [1.2, 1.0], [0.5, 0.004166666666666667], [0.75, 0.0020833333333333333], [0.5, 0.01875], [2.4, 0.2520833333333333], [1.33, 0.5270833333333333], [2.24, 0.010416666666666666], [1.12, 0.004166666666666667], [0.6, 0.0020833333333333333], [1.33, 0.0020833333333333333], [0.6, 0.008333333333333333], [0.4, 0.010416666666666666], [0.25, 0.008333333333333333], [1.7, 0.004166666666666667], [0.9, 1.0], [1.2, 0.0020833333333333333], [0.5, 1.0], [0.75, 1.0], [2.4, 0.0020833333333333333], [1.5, 0.041666666666666664], [0.6, 0.32083333333333336], [1.33, 1.0], [2.24, 1.0], [0.3, 1.0], [0.6, 0.010416666666666666], [2.24, 0.008333333333333333], [0.8, 0.0020833333333333333], [0.56, 1.0], [1.33, 0.0020833333333333333], [1.8, 0.4083333333333333], [1.8, 0.025], [0.9, 1.0], [0.4, 0.375], [1.2, 0.01875], [2.0, 0.0020833333333333333], [0.4, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.6, 0.0020833333333333333], [0.2, 0.0020833333333333333], [0.2, 0.30833333333333335], [0.2, 0.01875], [0.6, 0.2520833333333333], [0.8, 1.0], [0.6, 0.016666666666666666], [0.8, 0.004166666666666667], [0.5, 0.0020833333333333333], [0.14, 0.25416666666666665], [0.14, 0.4125], [1.12, 1.0], [2.24, 1.0], [0.28, 0.00625], [0.14, 0.0020833333333333333], [2.24, 0.00625], [1.12, 0.0020833333333333333], [1.7, 0.00625], [1.5, 1.0], [0.9, 0.1125], [1.0, 0.004166666666666667], [1.33, 1.0], [1.8, 1.0], [0.4, 0.0020833333333333333], [1.6, 0.0020833333333333333], [1.2, 0.0020833333333333333], [0.8, 1.0], [0.2, 1.0], [2.0, 1.0], [0.3, 1.0], [0.6, 0.0020833333333333333], [0.5, 0.00625], [0.56, 0.016666666666666666], [1.12, 0.3854166666666667], [1.12, 0.022916666666666665], [0.75, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.42, 0.31875], [0.28, 0.29375], [0.75, 1.0], [1.0, 1.0], [1.12, 1.0], [1.5, 1.0], [0.28, 0.0125], [0.75, 0.0020833333333333333], [1.5, 1.0], [1.0, 0.008333333333333333], [1.12, 1.0], [0.16, 0.26458333333333334], [0.14, 0.36875], [0.28, 1.0], [1.0, 1.0], [1.12, 1.0], [1.7, 1.0], [0.7, 0.00625], [0.28, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.14, 1.0], [1.12, 0.00625], [1.0, 1.0], [0.42, 0.12083333333333333], [1.5, 0.004166666666666667], [0.75, 1.0], [0.16, 0.022916666666666665], [2.24, 1.0], [0.7, 0.35208333333333336], [1.0, 0.016666666666666666], [1.12, 1.0], [0.7, 0.00625], [1.12, 0.00625], [1.0, 0.00625], [0.14, 0.04583333333333333], [0.28, 0.2875], [0.42, 0.008333333333333333], [0.28, 1.0], [0.7, 0.2791666666666667], [1.0, 1.0], [1.12, 1.0], [0.7, 0.0125], [1.12, 1.0], [1.0, 0.004166666666666667], [0.56, 0.3958333333333333], [1.4, 0.3145833333333333], [1.0, 0.025], [1.0, 0.022916666666666665], [0.42, 0.26458333333333334], [0.42, 0.01875], [1.5, 0.425], [1.0, 0.004166666666666667], [1.0, 0.010416666666666666], [0.14, 0.7208333333333333], [1.0, 0.18125], [1.0, 0.016666666666666666], [0.19, 0.00625], [0.37, 0.0020833333333333333], [1.5, 0.0020833333333333333], [1.12, 0.0020833333333333333], [0.7, 0.0020833333333333333], [1.4, 1.0], [0.28, 1.0], [0.14, 1.0], [0.56, 1.0], [0.42, 1.0], [1.7, 1.0], [0.37, 0.20833333333333334], [0.37, 0.6291666666666667], [1.0, 0.3458333333333333], [1.0, 0.025], [0.75, 1.0], [0.56, 0.6645833333333333], [0.19, 0.35208333333333336], [0.19, 0.020833333333333332], [0.37, 0.4895833333333333], [0.37, 0.014583333333333334], [0.56, 0.0020833333333333333], [0.75, 1.0], [0.94, 0.008333333333333333], [0.75, 1.0], [0.56, 1.0], [1.0, 0.03333333333333333], [0.19, 0.004166666666666667], [0.94, 0.029166666666666667], [0.37, 0.0020833333333333333], [0.75, 0.04791666666666667], [0.56, 0.016666666666666666], [4.5, 0.17291666666666666], [0.44, 0.004166666666666667], [2.67, 0.00625], [4.5, 0.33541666666666664], [2.67, 0.016666666666666666], [4.5, 0.00625], [0.67, 0.00625], [2.67, 0.0020833333333333333], [0.44, 0.24166666666666667], [2.24, 0.11041666666666666], [2.67, 0.28958333333333336], [4.76, 0.004166666666666667], [2.67, 0.00625], [0.9, 0.00625], [2.24, 0.30416666666666664], [2.24, 0.016666666666666666], [2.67, 0.3020833333333333], [4.5, 1.0], [4.5, 0.01875], [2.67, 0.004166666666666667], [1.12, 0.004166666666666667], [2.24, 0.27708333333333335], [2.24, 0.010416666666666666], [4.0, 0.3229166666666667], [0.42, 0.00625], [2.24, 0.025], [0.67, 0.00625], [0.9, 1.0], [1.12, 0.020833333333333332], [2.67, 0.016666666666666666], [4.76, 0.014583333333333334], [2.24, 0.17083333333333334], [0.67, 0.28541666666666665], [2.0, 0.004166666666666667], [2.24, 0.28958333333333336], [2.24, 0.022916666666666665], [5.34, 0.3229166666666667], [1.0, 0.029166666666666667], [2.24, 0.26666666666666666], [2.24, 0.020833333333333332], [0.67, 0.3458333333333333], [2.0, 1.0], [0.67, 0.010416666666666666], [2.0, 0.004166666666666667], [2.24, 0.3541666666666667], [2.24, 0.010416666666666666], [0.37, 0.3020833333333333], [3.56, 1.0], [2.24, 0.004166666666666667], [2.0, 0.004166666666666667], [1.0, 1.0], [4.0, 1.0], [0.67, 0.0020833333333333333], [5.34, 1.0], [0.42, 0.004166666666666667], [4.5, 0.008333333333333333], [2.0, 0.06666666666666667], [3.56, 0.3020833333333333], [3.56, 0.016666666666666666], [0.56, 0.008333333333333333], [1.8, 1.0], [4.0, 0.6583333333333333], [0.75, 0.0125], [2.0, 0.29583333333333334], [2.0, 0.01875], [3.56, 0.3020833333333333], [3.56, 0.016666666666666666], [0.9, 0.0125], [1.8, 0.28958333333333336], [1.8, 0.0125], [4.5, 0.3729166666666667], [3.36, 0.008333333333333333], [0.33, 1.0], [0.67, 0.004166666666666667], [0.75, 0.00625], [0.9, 0.0020833333333333333], [3.56, 1.0], [2.0, 0.0020833333333333333], [0.56, 1.0], [1.8, 0.0020833333333333333], [0.37, 0.0020833333333333333], [2.24, 0.12916666666666668], [2.0, 0.34375], [0.84, 0.0020833333333333333], [1.7, 0.3104166666666667], [0.67, 0.35], [3.36, 1.0], [3.36, 0.01875], [0.67, 0.004166666666666667], [2.24, 0.32916666666666666], [2.24, 0.01875], [0.84, 0.3333333333333333], [2.0, 1.0], [0.84, 0.008333333333333333], [2.0, 1.0], [1.7, 0.2625], [1.7, 0.010416666666666666], [0.22, 0.30625], [4.5, 0.09583333333333334], [3.36, 0.0020833333333333333], [1.7, 1.0], [0.67, 1.0], [2.24, 0.0020833333333333333], [0.84, 1.0], [2.0, 1.0], [0.33, 0.010416666666666666], [4.0, 1.0], [2.24, 0.0020833333333333333], [1.12, 0.00625], [1.33, 1.0], [0.44, 0.1625], [0.67, 0.34791666666666665], [0.9, 0.3], [1.33, 0.30833333333333335], [2.0, 0.010416666666666666], [1.33, 1.0], [1.0, 1.0], [0.67, 0.3104166666666667], [0.67, 0.0125], [1.12, 0.33958333333333335], [1.33, 1.0], [2.24, 1.0], [2.24, 0.008333333333333333], [1.12, 0.004166666666666667], [1.33, 1.0], [0.21, 0.3625], [1.33, 0.32916666666666666], [2.0, 1.0], [2.67, 0.010416666666666666], [1.33, 0.004166666666666667], [0.42, 0.00625], [2.0, 1.0], [0.67, 0.04375], [0.44, 1.0], [0.9, 0.0020833333333333333], [0.22, 0.0020833333333333333], [2.24, 1.0], [1.0, 1.0], [1.12, 0.0020833333333333333], [0.21, 0.28125], [1.33, 0.33541666666666664], [2.24, 0.004166666666666667], [1.33, 0.00625], [1.12, 1.0], [0.42, 0.325], [0.42, 0.0125], [0.67, 1.0], [1.33, 0.27708333333333335], [2.0, 1.0], [2.0, 0.020833333333333332], [1.33, 0.0020833333333333333], [0.5, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.84, 0.3416666666666667], [1.8, 0.34791666666666665], [2.0, 0.19166666666666668], [2.0, 0.022916666666666665], [1.8, 0.17083333333333334], [1.8, 0.020833333333333332], [0.15, 0.3229166666666667], [0.3, 0.06458333333333334], [1.12, 0.0125], [1.5, 0.0020833333333333333], [1.33, 1.0], [0.5, 1.0], [0.67, 1.0], [0.84, 1.0], [2.0, 1.0], [0.42, 1.0], [2.24, 1.0], [1.8, 0.0020833333333333333], [2.67, 0.004166666666666667], [1.0, 0.05], [0.15, 0.20833333333333334], [0.6, 0.48125], [0.75, 0.3125], [1.0, 0.35], [1.12, 0.31875], [1.12, 0.41041666666666665], [1.5, 1.0], [1.5, 0.008333333333333333], [1.12, 0.0125], [3.0, 1.0770833333333334], [1.5, 2.6770833333333335], [1.5, 0.01875], [1.7, 0.49583333333333335], [0.19, 0.6791666666666667], [1.8, 0.004166666666666667], [0.9, 0.016666666666666666], [1.7, 0.0020833333333333333], [0.6, 0.0020833333333333333], [0.75, 1.0], [3.0, 0.0020833333333333333], [0.3, 1.0], [1.5, 1.0], [1.0, 0.0020833333333333333], [1.12, 0.052083333333333336], [0.56, 0.9854166666666667], [0.19, 0.13541666666666666], [0.9, 0.010416666666666666], [0.56, 0.010416666666666666], [1.8, 0.022916666666666665], [1.8, 0.09375], [0.9, 0.0125], [1.7, 0.3625], [1.8, 0.052083333333333336], [1.5, 0.2791666666666667], [1.7, 0.010416666666666666], [1.33, 0.04583333333333333], [0.14, 0.15416666666666667], [1.12, 0.24166666666666667], [0.28, 0.0020833333333333333], [1.0, 0.010416666666666666], [0.84, 0.0020833333333333333], [0.14, 0.4125], [1.5, 0.004166666666666667], [1.33, 0.0020833333333333333], [1.12, 0.0020833333333333333], [0.9, 0.004166666666666667], [0.28, 0.014583333333333334], [1.33, 0.21666666666666667], [1.33, 0.11458333333333333], [0.28, 0.22083333333333333], [1.0, 1.0], [1.33, 0.0020833333333333333], [0.84, 0.01875], [0.28, 0.04375], [0.67, 0.28958333333333336], [0.84, 0.03333333333333333], [1.0, 0.008333333333333333], [0.5, 0.24583333333333332], [0.84, 0.0625], [0.5, 0.0125], [1.0, 0.18125], [1.33, 0.035416666666666666], [0.67, 0.035416666666666666], [0.28, 0.010416666666666666], [0.84, 0.325], [0.15, 0.3], [0.15, 0.020833333333333332], [0.28, 0.07083333333333333], [0.84, 1.0], [0.3, 0.008333333333333333], [1.5, 0.004166666666666667], [0.75, 0.00625], [0.9, 0.00625], [0.3, 0.7354166666666667], [0.75, 0.32083333333333336], [0.3, 0.008333333333333333], [0.44, 0.0020833333333333333], [0.3, 0.29583333333333334], [0.44, 0.0020833333333333333], [1.5, 0.004166666666666667], [1.5, 1.0], [0.6, 0.004166666666666667], [0.6, 0.175], [1.33, 0.022916666666666665], [1.2, 0.3375], [1.12, 0.28958333333333336], [0.22, 0.09166666666666666], [1.12, 0.28125], [0.67, 0.022916666666666665], [1.12, 1.0], [0.44, 0.00625], [0.33, 0.010416666666666666], [0.33, 0.008333333333333333], [0.5, 0.00625], [1.33, 0.04583333333333333], [1.5, 0.0020833333333333333], [0.22, 0.008333333333333333], [1.2, 0.010416666666666666], [1.12, 0.36041666666666666], [1.12, 0.07291666666666667], [1.12, 0.29375], [1.12, 0.014583333333333334], [0.9, 0.00625], [0.44, 0.016666666666666666], [0.5, 0.016666666666666666], [0.67, 1.0], [0.67, 0.0125], [0.5, 0.00625], [0.5, 0.26458333333333334], [0.67, 0.016666666666666666], [0.33, 0.0625], [0.33, 0.08958333333333333], [0.67, 0.225], [0.56, 0.0125], [0.5, 1.0], [1.12, 0.09375], [1.12, 0.20416666666666666], [0.25, 0.1625], [0.44, 0.11875], [0.9, 0.0020833333333333333], [0.5, 0.004166666666666667], [0.67, 0.004166666666666667], [1.12, 0.010416666666666666], [1.2, 0.035416666666666666], [0.56, 0.01875], [1.12, 0.10625], [0.6, 0.32916666666666666], [1.0, 0.0020833333333333333], [1.12, 0.26666666666666666], [1.12, 0.010416666666666666], [0.5, 0.0020833333333333333], [1.2, 0.37083333333333335], [0.25, 1.0], [0.44, 1.0], [0.5, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.9, 0.004166666666666667], [1.2, 0.00625], [0.9, 0.0020833333333333333], [1.12, 0.08541666666666667], [0.9, 0.07083333333333333], [1.2, 0.14791666666666667], [0.6, 0.008333333333333333], [0.6, 0.016666666666666666], [1.12, 0.004166666666666667], [0.6, 0.08958333333333333], [0.25, 0.23541666666666666], [1.2, 0.0020833333333333333], [0.25, 0.01875], [1.12, 0.04791666666666667], [2.0, 0.26666666666666666], [0.19, 0.008333333333333333], [1.7, 0.375], [1.0, 0.008333333333333333], [0.37, 0.0020833333333333333], [0.56, 0.3770833333333333], [1.8, 0.2875], [1.12, 0.0020833333333333333], [0.37, 0.33958333333333335], [1.0, 0.014583333333333334], [1.7, 1.0], [0.37, 0.0020833333333333333], [1.7, 0.00625], [1.0, 0.00625], [1.2, 0.004166666666666667], [0.19, 0.0020833333333333333], [1.8, 0.0020833333333333333], [1.12, 1.0], [2.0, 1.0], [0.56, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.9, 0.05], [0.75, 1.0], [0.56, 0.325], [0.37, 0.01875], [0.75, 0.03125], [1.5, 0.027083333333333334], [1.7, 0.3104166666666667], [1.7, 0.014583333333333334], [0.56, 0.03958333333333333], [0.9, 1.0], [1.7, 0.0020833333333333333], [1.5, 0.010416666666666666], [1.5, 0.010416666666666666], [1.8, 1.0], [0.3, 0.010416666666666666], [1.7, 0.11666666666666667], [1.33, 0.0020833333333333333], [1.5, 0.29791666666666666], [1.5, 0.010416666666666666], [1.2, 0.0020833333333333333], [1.33, 0.275], [1.7, 1.0], [1.7, 0.0125], [1.33, 1.0], [1.5, 0.45208333333333334], [1.8, 1.0], [1.5, 0.0125], [1.8, 0.004166666666666667], [1.7, 0.03958333333333333], [1.33, 0.004166666666666667], [1.7, 0.23333333333333334], [1.33, 1.0], [1.2, 0.40625], [1.5, 1.0], [1.2, 0.0125], [1.5, 1.0], [0.14, 0.28541666666666665], [1.7, 0.18125], [0.28, 0.00625], [0.75, 0.0125], [1.7, 1.0], [1.12, 0.0020833333333333333], [1.5, 1.0], [1.2, 1.0], [0.84, 1.0], [1.33, 0.0020833333333333333], [0.3, 1.0], [1.8, 0.022916666666666665], [0.75, 0.39375], [0.14, 0.21458333333333332], [0.84, 0.06458333333333334], [0.84, 0.0125], [0.75, 1.0], [0.28, 0.30625], [0.28, 0.022916666666666665], [0.42, 1.0], [0.84, 0.12708333333333333], [1.12, 1.0], [0.42, 0.0020833333333333333], [0.75, 0.041666666666666664], [1.12, 0.2375], [0.7, 0.004166666666666667], [0.56, 0.0020833333333333333], [1.5, 0.6791666666666667], [1.7, 0.325], [1.7, 0.008333333333333333], [0.19, 0.32916666666666666], [0.56, 0.26458333333333334], [0.28, 0.0020833333333333333], [0.7, 1.0], [1.5, 0.0020833333333333333], [1.7, 1.0], [1.8, 0.0020833333333333333], [0.9, 0.00625], [0.37, 0.0020833333333333333], [0.19, 0.23958333333333334], [0.56, 0.69375], [0.37, 0.3875], [0.9, 0.014583333333333334], [1.8, 1.0], [0.37, 0.008333333333333333], [1.8, 1.0], [0.9, 0.004166666666666667], [0.75, 0.3125], [1.7, 0.0020833333333333333], [1.5, 0.3333333333333333], [1.33, 0.37083333333333335], [1.12, 0.058333333333333334], [1.12, 0.26875], [0.14, 0.008333333333333333], [0.28, 1.0], [1.7, 0.0020833333333333333], [0.37, 0.0020833333333333333], [0.75, 0.0020833333333333333], [1.5, 1.0], [1.8, 1.0], [0.9, 1.0], [1.33, 0.0020833333333333333], [0.56, 0.0375], [0.14, 0.15], [0.84, 0.33125], [1.33, 0.0020833333333333333], [0.28, 0.29791666666666666], [1.12, 0.0020833333333333333], [0.84, 1.0], [1.33, 0.03125], [0.28, 0.01875], [1.33, 1.0], [0.42, 0.0020833333333333333], [0.42, 0.13333333333333333], [0.56, 0.2125], [0.84, 0.0020833333333333333], [1.0, 1.0], [1.0, 0.12916666666666668], [0.28, 0.03958333333333333], [0.56, 0.0125], [0.42, 0.0875], [1.33, 0.2708333333333333], [1.33, 0.0125], [0.9, 0.325], [0.15, 0.09166666666666666], [0.15, 0.275], [0.15, 0.020833333333333332], [0.3, 0.022916666666666665], [0.42, 0.029166666666666667], [0.84, 0.010416666666666666], [1.5, 0.0020833333333333333], [0.75, 0.0020833333333333333], [0.9, 0.0020833333333333333], [1.2, 0.004166666666666667], [0.9, 0.00625], [0.15, 0.12708333333333333], [0.3, 0.016666666666666666], [1.33, 0.03333333333333333], [0.3, 0.07708333333333334], [0.44, 0.05416666666666667], [0.75, 0.027083333333333334], [0.9, 0.28958333333333336], [1.5, 1.0], [0.6, 0.008333333333333333], [0.75, 1.0], [1.5, 0.0020833333333333333], [0.9, 0.008333333333333333], [0.44, 0.022916666666666665], [1.2, 0.0125], [0.44, 0.15208333333333332], [1.33, 0.0020833333333333333], [1.2, 0.32083333333333336], [1.12, 0.2791666666666667], [0.9, 0.4083333333333333], [1.12, 1.0], [0.67, 0.008333333333333333], [0.9, 0.0020833333333333333], [1.12, 0.0020833333333333333], [0.5, 0.0020833333333333333], [0.44, 0.03333333333333333], [1.2, 0.020833333333333332], [1.5, 0.075], [0.75, 0.04791666666666667], [0.6, 0.008333333333333333], [0.3, 0.025], [1.33, 0.016666666666666666], [0.44, 0.11666666666666667], [1.12, 0.27291666666666664], [1.12, 0.010416666666666666], [1.12, 0.29375], [1.12, 0.020833333333333332], [0.44, 0.25], [0.44, 0.020833333333333332], [0.5, 0.06041666666666667], [0.67, 1.0], [0.9, 1.0], [0.9, 0.020833333333333332], [0.67, 1.0], [0.5, 0.0020833333333333333], [0.56, 1.0], [0.44, 0.2791666666666667], [0.44, 0.01875], [0.5, 0.31875], [0.56, 1.0], [0.67, 1.0], [0.5, 0.020833333333333332], [0.67, 1.0], [0.56, 1.0], [1.12, 0.2833333333333333], [1.12, 0.016666666666666666], [0.125, 0.10625], [0.9, 0.33958333333333335], [1.2, 0.014583333333333334], [0.9, 0.0020833333333333333], [0.25, 1.0], [0.5, 0.022916666666666665], [0.44, 1.0], [0.56, 1.0], [0.67, 1.0], [1.12, 0.0020833333333333333], [1.12, 0.18541666666666667], [0.25, 0.32708333333333334], [0.25, 0.0125], [1.0, 0.004166666666666667], [1.12, 0.25416666666666665], [1.12, 0.022916666666666665], [0.44, 1.0], [1.2, 0.3458333333333333], [1.2, 0.010416666666666666], [0.6, 0.0020833333333333333], [1.12, 0.275], [1.12, 0.008333333333333333], [0.5, 0.0020833333333333333], [0.6, 0.325], [1.2, 1.0], [0.6, 0.0125], [1.2, 0.0020833333333333333], [2.0, 0.31875], [1.0, 0.45208333333333334], [0.19, 0.00625], [1.7, 0.0020833333333333333], [1.0, 1.0], [0.125, 0.022916666666666665], [0.25, 0.00625], [0.44, 1.0], [1.2, 0.004166666666666667], [0.6, 1.0], [1.12, 0.0020833333333333333], [2.0, 1.0], [0.9, 0.01875], [0.5, 0.04791666666666667], [0.19, 0.4479166666666667], [0.19, 0.020833333333333332], [1.8, 0.0020833333333333333], [1.12, 1.0], [1.7, 0.29791666666666666], [1.0, 0.014583333333333334], [0.56, 0.00625], [1.7, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.37, 0.3375], [0.9, 0.00625], [1.0, 0.31875], [0.75, 0.004166666666666667], [1.0, 0.014583333333333334], [0.56, 0.3020833333333333], [0.9, 1.0], [0.56, 0.008333333333333333], [0.9, 1.0], [0.15, 0.26666666666666666], [0.75, 0.34791666666666665], [1.0, 0.016666666666666666], [1.12, 1.0], [0.75, 0.00625], [1.5, 1.0], [0.3, 0.0020833333333333333], [1.12, 1.0], [1.0, 0.0020833333333333333], [0.37, 0.014583333333333334], [0.56, 0.008333333333333333], [0.9, 1.0], [1.8, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.19, 0.014583333333333334], [0.3, 0.5125], [0.3, 0.010416666666666666], [0.44, 1.0], [0.6, 0.28958333333333336], [1.5, 0.275], [0.75, 0.016666666666666666], [1.0, 1.0], [1.5, 0.00625], [2.0, 0.0020833333333333333], [0.75, 1.0], [1.0, 1.0], [0.3, 0.3125], [0.3, 0.010416666666666666], [0.75, 0.27708333333333335], [1.0, 0.014583333333333334], [1.12, 1.0], [1.5, 1.0], [0.75, 0.008333333333333333], [1.5, 1.0], [1.12, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.15, 0.14791666666666667], [0.15, 0.022916666666666665], [0.14, 0.25], [0.75, 0.25625], [1.0, 1.0], [1.12, 1.0], [1.5, 1.0], [1.5, 0.010416666666666666], [0.75, 1.0], [0.28, 1.0], [1.0, 0.008333333333333333], [1.12, 1.0], [0.15, 0.05625], [0.14, 0.00625], [2.0, 1.0], [0.44, 0.0020833333333333333], [0.3, 0.0020833333333333333], [0.6, 0.0020833333333333333], [1.7, 0.1875], [0.28, 0.30833333333333335], [0.75, 1.0], [1.0, 1.0], [0.28, 0.008333333333333333], [0.75, 1.0], [1.0, 0.014583333333333334], [0.42, 0.2833333333333333], [1.0, 0.31666666666666665], [1.12, 1.0], [0.7, 0.014583333333333334], [0.56, 0.0020833333333333333], [1.12, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.42, 0.004166666666666667], [0.75, 0.0020833333333333333], [1.5, 0.04375], [0.28, 0.4625], [0.7, 1.0], [0.28, 0.025], [0.7, 1.0], [0.094, 0.31666666666666665], [0.094, 0.010416666666666666], [1.12, 0.4], [1.12, 0.020833333333333332], [0.75, 0.0020833333333333333], [1.5, 1.0], [0.19, 0.0020833333333333333], [0.9, 0.0020833333333333333], [1.7, 0.10208333333333333], [0.56, 0.0020833333333333333], [0.7, 0.0020833333333333333], [1.0, 0.022916666666666665], [0.28, 0.03125], [1.12, 0.35208333333333336], [1.8, 0.016666666666666666], [2.24, 0.0020833333333333333], [1.12, 0.004166666666666667], [0.56, 0.33958333333333335], [1.8, 0.30833333333333335], [2.24, 1.0], [2.24, 0.020833333333333332], [0.44, 0.0020833333333333333], [1.8, 1.0], [0.75, 0.29791666666666666], [0.75, 0.01875], [2.0, 0.0020833333333333333], [1.7, 1.0], [2.24, 0.2833333333333333], [2.24, 0.01875], [1.8, 0.26875], [2.24, 1.0], [3.0, 0.008333333333333333], [1.8, 0.004166666666666667], [2.24, 0.008333333333333333], [0.14, 0.3], [1.7, 0.12708333333333333], [0.28, 0.00625], [2.67, 0.0020833333333333333], [1.7, 0.004166666666666667], [0.44, 0.0125], [2.0, 1.0], [1.5, 1.0], [0.75, 0.0020833333333333333], [1.8, 1.0], [1.12, 1.0], [3.0, 1.0], [2.24, 1.0], [0.56, 1.0], [0.19, 0.020833333333333332], [0.9, 1.0], [2.24, 0.47708333333333336], [1.33, 0.0020833333333333333], [0.67, 0.29583333333333334], [0.84, 1.0], [0.56, 1.0], [1.33, 0.16875], [1.33, 0.022916666666666665], [1.7, 0.058333333333333334], [1.7, 0.014583333333333334], [2.67, 0.06458333333333334], [2.67, 0.022916666666666665], [1.0, 0.0020833333333333333], [0.84, 0.29583333333333334], [0.84, 0.014583333333333334], [0.67, 0.30416666666666664], [1.33, 1.0], [1.7, 1.0], [0.67, 0.016666666666666666], [1.33, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.15, 0.3229166666666667], [1.5, 1.0], [3.0, 0.3416666666666667], [0.3, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.56, 0.022916666666666665], [0.28, 1.0], [1.0, 0.0020833333333333333], [0.84, 0.0020833333333333333], [2.67, 0.0020833333333333333], [1.7, 1.0], [0.67, 1.0], [1.33, 0.004166666666666667], [0.14, 0.04375], [1.8, 0.48125], [1.5, 0.014583333333333334], [1.8, 0.008333333333333333], [1.5, 1.0], [0.9, 1.0], [0.3, 0.29583333333333334], [0.3, 0.020833333333333332], [0.44, 0.0020833333333333333], [0.3, 0.28125], [1.5, 1.0], [0.3, 0.0125], [1.5, 0.004166666666666667], [0.6, 0.004166666666666667], [0.75, 1.0], [1.7, 0.3104166666666667], [0.84, 1.0], [0.44, 0.325], [0.9, 1.0], [1.8, 1.0], [0.44, 0.010416666666666666], [1.8, 0.0020833333333333333], [0.9, 1.0], [2.4, 0.26875], [0.11, 0.20625], [0.11, 0.025], [2.24, 0.1125], [0.44, 0.020833333333333332], [1.7, 1.0], [0.75, 1.0], [2.4, 1.0], [0.84, 1.0], [0.6, 1.0], [0.9, 1.0], [0.3, 1.0], [1.5, 1.0], [3.0, 0.0020833333333333333], [0.15, 0.03958333333333333], [1.8, 1.0], [2.24, 0.008333333333333333], [1.33, 0.0020833333333333333], [1.8, 1.0], [1.12, 1.0], [0.44, 0.21875], [2.0, 0.33541666666666664], [1.0, 0.004166666666666667], [1.8, 0.275], [1.8, 0.01875], [0.9, 0.00625], [0.14, 0.13125], [1.12, 0.21041666666666667], [0.28, 0.016666666666666666], [0.44, 0.004166666666666667], [2.24, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.9, 1.0], [2.0, 1.0], [1.0, 0.008333333333333333], [1.33, 1.0], [1.7, 0.004166666666666667], [0.84, 0.0020833333333333333], [1.33, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.14, 0.2875], [0.84, 0.225], [0.84, 0.010416666666666666], [0.28, 0.00625], [0.33, 1.0], [0.5, 0.004166666666666667], [0.28, 0.004166666666666667], [0.9, 0.26666666666666666], [0.25, 0.4041666666666667], [1.5, 1.0], [1.8, 1.0], [0.33, 1.0], [0.9, 0.0020833333333333333], [0.28, 1.0], [1.0, 1.0], [1.7, 1.0], [0.84, 1.0], [1.33, 0.0020833333333333333], [0.5, 1.0], [1.5, 0.54375], [1.5, 0.0125], [1.2, 0.0020833333333333333], [0.5, 0.0020833333333333333], [0.5, 0.2875], [0.75, 0.00625], [1.33, 0.0020833333333333333], [1.7, 1.0], [0.5, 0.0020833333333333333], [1.2, 0.325], [1.5, 1.0], [1.8, 1.0], [1.2, 0.01875], [1.5, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.6, 1.0], [1.2, 0.29583333333333334], [1.5, 1.0], [1.8, 1.0], [0.9, 0.022916666666666665], [1.5, 1.0], [1.2, 0.0020833333333333333], [1.8, 1.0], [0.6, 0.29583333333333334], [0.75, 1.0], [1.2, 1.0], [1.8, 1.0], [0.6, 0.008333333333333333], [0.75, 0.0020833333333333333], [1.8, 0.0020833333333333333], [1.2, 1.0], [2.4, 0.26458333333333334], [0.4, 0.27708333333333335], [1.7, 0.11875], [0.75, 1.0], [0.6, 1.0], [0.9, 1.0], [0.25, 0.0020833333333333333], [1.2, 1.0], [2.4, 0.0020833333333333333], [1.33, 0.010416666666666666], [1.8, 1.0], [1.33, 0.008333333333333333], [0.8, 1.0], [2.24, 1.0], [1.8, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.5, 0.004166666666666667], [0.5, 0.016666666666666666], [2.24, 0.28958333333333336], [1.12, 0.014583333333333334], [1.33, 1.0], [2.24, 0.004166666666666667], [0.6, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.33, 0.0020833333333333333], [0.4, 0.38958333333333334], [1.8, 1.0], [0.4, 0.0125], [1.8, 0.004166666666666667], [0.9, 0.0020833333333333333], [0.4, 0.36666666666666664], [1.2, 0.0125], [0.4, 1.0], [2.0, 0.0020833333333333333], [1.0, 0.004166666666666667], [1.6, 0.00625], [0.1, 0.30625], [0.1, 0.020833333333333332], [0.4, 0.23958333333333334], [0.6, 1.0], [0.8, 1.0], [0.6, 0.0125], [0.8, 1.0], [0.3, 0.0020833333333333333], [0.5, 0.004166666666666667], [0.4, 0.004166666666666667], [0.14, 0.26666666666666666], [2.24, 0.36666666666666664], [0.14, 0.014583333333333334], [2.24, 0.0020833333333333333], [1.5, 0.0020833333333333333], [0.28, 0.0020833333333333333], [0.14, 0.0020833333333333333], [1.7, 1.0], [0.3, 0.0875], [1.33, 0.008333333333333333], [0.4, 0.0020833333333333333], [1.12, 1.0], [2.0, 0.0020833333333333333], [0.9, 1.0], [0.6, 0.0020833333333333333], [0.14, 1.0], [1.8, 0.0020833333333333333], [0.5, 1.0], [0.8, 0.0020833333333333333], [1.0, 1.0], [1.2, 1.0], [1.6, 0.00625], [1.12, 0.37083333333333335], [0.75, 0.004166666666666667], [1.0, 1.0], [0.28, 0.2791666666666667], [0.42, 0.022916666666666665], [0.28, 0.0020833333333333333], [0.75, 0.2791666666666667], [1.5, 1.0], [1.0, 0.016666666666666666], [1.12, 1.0], [0.56, 0.00625], [1.5, 1.0], [0.75, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.14, 0.2520833333333333], [1.12, 0.375], [1.7, 1.0], [0.14, 0.016666666666666666], [0.28, 1.0], [1.0, 1.0], [0.84, 0.00625], [1.12, 1.0], [1.7, 0.0020833333333333333], [0.28, 1.0], [0.14, 1.0], [1.0, 0.0020833333333333333], [0.42, 0.01875], [0.56, 0.029166666666666667], [0.75, 1.0], [1.5, 1.0], [2.24, 1.0], [0.28, 0.4166666666666667], [0.7, 0.010416666666666666], [0.28, 1.0], [0.28, 0.2604166666666667], [0.42, 0.008333333333333333], [0.28, 1.0], [1.8, 0.24583333333333332], [1.7, 0.08333333333333333], [0.56, 0.020833333333333332], [1.7, 0.0020833333333333333], [1.5, 0.30833333333333335], [0.14, 0.325], [0.28, 1.0], [1.0, 1.0], [1.7, 1.0], [1.25, 0.008333333333333333], [0.28, 1.0], [1.7, 0.0020833333333333333], [0.14, 0.00625], [1.0, 1.0], [0.14, 0.2708333333333333], [0.14, 0.020833333333333332], [0.84, 0.3145833333333333], [1.0, 1.0], [1.4, 0.016666666666666666], [0.84, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.14, 0.15416666666666667], [0.094, 0.008333333333333333], [0.14, 0.004166666666666667], [0.094, 0.01875], [1.12, 0.43125], [0.75, 0.008333333333333333], [1.12, 0.0020833333333333333], [0.9, 1.0], [0.19, 0.004166666666666667], [0.7, 0.06666666666666667], [0.14, 1.0], [0.56, 0.0020833333333333333], [1.25, 1.0], [1.5, 0.0020833333333333333], [0.42, 1.0], [1.12, 1.0], [1.4, 1.0], [1.7, 1.0], [1.8, 0.0020833333333333333], [0.84, 1.0], [1.0, 0.022916666666666665], [0.28, 0.016666666666666666], [2.24, 0.375], [0.37, 0.21666666666666667], [2.24, 0.36875], [0.56, 0.00625], [2.24, 0.0020833333333333333], [0.42, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.75, 0.275], [0.75, 0.010416666666666666], [1.7, 0.008333333333333333], [2.0, 1.0], [0.44, 0.08333333333333333], [1.8, 0.20208333333333334], [2.24, 1.0], [0.28, 0.0020833333333333333], [2.24, 0.010416666666666666], [1.8, 0.004166666666666667], [1.8, 0.2875], [3.0, 0.00625], [1.8, 0.0020833333333333333], [0.14, 0.20416666666666666], [0.9, 0.0020833333333333333], [0.37, 1.0], [0.44, 0.004166666666666667], [1.8, 1.0], [0.75, 1.0], [2.0, 1.0], [0.14, 1.0], [3.0, 0.0020833333333333333], [2.24, 0.0020833333333333333], [0.19, 0.029166666666666667], [0.28, 1.0], [0.42, 1.0], [0.56, 1.0], [1.7, 0.014583333333333334], [0.28, 0.008333333333333333], [2.67, 0.0020833333333333333], [1.7, 1.0], [1.33, 0.48333333333333334], [2.24, 1.0], [0.56, 0.25833333333333336], [0.67, 0.03333333333333333], [0.84, 0.004166666666666667], [1.33, 0.13125], [1.33, 0.016666666666666666], [1.7, 0.04791666666666667], [1.7, 0.022916666666666665], [2.67, 0.08958333333333333], [2.67, 0.020833333333333332], [1.0, 0.004166666666666667], [0.56, 0.24583333333333332], [0.67, 1.0], [0.84, 1.0], [0.67, 0.020833333333333332], [0.56, 0.0020833333333333333], [0.84, 1.0], [0.67, 0.3625], [1.33, 1.0], [1.7, 1.0], [0.67, 0.020833333333333332], [1.33, 1.0], [1.7, 0.0020833333333333333], [1.5, 0.27291666666666664], [0.15, 0.175], [1.0, 0.004166666666666667], [2.67, 0.0020833333333333333], [0.56, 1.0], [0.28, 1.0], [0.84, 1.0], [2.24, 1.0], [0.67, 1.0], [1.5, 1.0], [1.7, 1.0], [1.33, 0.0020833333333333333], [3.0, 0.029166666666666667], [0.3, 1.0], [1.8, 0.0020833333333333333], [1.8, 0.46458333333333335], [1.8, 0.0125], [0.9, 1.0], [1.5, 0.0020833333333333333], [0.3, 0.25833333333333336], [0.3, 0.01875], [0.5, 0.0020833333333333333], [0.9, 0.29791666666666666], [1.5, 1.0], [0.75, 0.01875], [0.6, 1.0], [1.5, 1.0], [0.9, 0.00625], [0.3, 0.29583333333333334], [0.3, 0.010416666666666666], [1.7, 1.0], [0.84, 0.0020833333333333333], [0.15, 0.2916666666666667], [0.3, 1.0], [0.15, 0.008333333333333333], [0.3, 0.0020833333333333333], [0.9, 0.004166666666666667], [1.8, 1.0], [1.8, 0.0125], [0.9, 0.00625], [2.4, 0.2875], [1.2, 0.025], [0.3, 0.35833333333333334], [0.15, 0.004166666666666667], [0.11, 1.0], [0.6, 1.0], [2.4, 1.0], [1.2, 1.0], [0.75, 1.0], [0.5, 1.0], [0.84, 0.0020833333333333333], [0.22, 1.0], [1.7, 1.0], [1.5, 1.0], [0.11, 0.00625], [1.8, 1.0], [2.24, 0.008333333333333333], [1.8, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.33, 1.0], [0.9, 0.004166666666666667], [3.0, 1.0], [0.44, 0.2125], [2.0, 0.325], [1.0, 0.00625], [1.8, 0.22291666666666668], [1.8, 0.022916666666666665], [0.9, 0.010416666666666666], [1.33, 0.35208333333333336], [0.28, 1.0], [0.84, 0.004166666666666667], [0.14, 0.004166666666666667], [1.33, 1.0], [1.7, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.22, 0.004166666666666667], [0.44, 0.0020833333333333333], [0.9, 0.0020833333333333333], [1.12, 1.0], [2.0, 1.0], [1.8, 1.0], [2.24, 1.0], [1.0, 0.0020833333333333333], [0.28, 0.1125], [0.28, 0.022916666666666665], [0.84, 0.29583333333333334], [1.0, 1.0], [0.84, 0.0125], [1.0, 0.0125], [0.42, 0.03958333333333333], [0.9, 0.26666666666666666], [0.14, 0.2125], [0.14, 0.022916666666666665], [0.125, 0.0020833333333333333], [0.28, 1.0], [0.125, 0.022916666666666665], [0.25, 0.28125], [1.5, 1.0], [1.8, 0.0020833333333333333], [0.9, 0.0020833333333333333], [0.14, 1.0], [0.84, 0.0020833333333333333], [0.42, 1.0], [1.33, 1.0], [1.0, 0.022916666666666665], [1.7, 0.016666666666666666], [1.5, 0.43125], [0.25, 0.016666666666666666], [1.5, 0.00625], [1.2, 1.0], [0.25, 0.0020833333333333333], [0.25, 0.23125], [0.25, 0.022916666666666665], [0.6, 0.004166666666666667], [1.7, 0.00625], [0.5, 0.0020833333333333333], [1.33, 0.008333333333333333], [1.2, 0.35625], [1.5, 1.0], [1.8, 1.0], [1.8, 0.020833333333333332], [0.9, 1.0], [1.5, 1.0], [1.2, 0.0020833333333333333], [1.2, 0.3125], [1.5, 1.0], [1.8, 1.0], [0.75, 0.008333333333333333], [0.37, 1.0], [1.8, 0.0020833333333333333], [1.5, 0.0020833333333333333], [1.2, 0.004166666666666667], [0.37, 0.016666666666666666], [0.6, 0.2708333333333333], [1.2, 1.0], [0.5, 0.016666666666666666], [1.8, 1.0], [0.6, 0.008333333333333333], [1.2, 1.0], [1.8, 1.0], [0.5, 0.0020833333333333333], [1.2, 0.24583333333333332], [2.4, 0.010416666666666666], [1.2, 0.0020833333333333333], [0.25, 0.33125], [1.7, 1.0], [0.6, 1.0], [0.5, 1.0], [2.4, 1.0], [1.8, 1.0], [1.33, 0.0020833333333333333], [0.75, 1.0], [1.2, 1.0], [1.5, 1.0], [0.9, 0.020833333333333332], [0.8, 0.058333333333333334], [1.33, 1.0], [2.24, 1.0], [1.12, 0.0020833333333333333], [0.4, 0.004166666666666667], [2.24, 0.33541666666666664], [0.4, 0.016666666666666666], [0.8, 1.0], [1.12, 1.0], [1.33, 1.0], [2.24, 0.00625], [0.6, 0.004166666666666667], [0.8, 1.0], [1.12, 1.0], [1.33, 0.0020833333333333333], [0.4, 0.00625], [1.8, 0.041666666666666664], [0.4, 0.35625], [0.6, 1.0], [0.8, 1.0], [1.8, 1.0], [0.6, 0.008333333333333333], [0.4, 1.0], [0.9, 1.0], [0.8, 0.0020833333333333333], [1.8, 1.0], [0.4, 0.325], [2.0, 0.020833333333333332], [1.2, 1.0], [0.4, 1.0], [1.0, 0.0020833333333333333], [0.2, 0.0020833333333333333], [0.2, 0.2791666666666667], [0.2, 0.010416666666666666], [0.1, 0.004166666666666667], [0.1, 0.016666666666666666], [0.6, 0.25625], [0.8, 1.0], [0.6, 0.022916666666666665], [0.17, 1.0], [0.8, 1.0], [0.5, 0.0020833333333333333], [0.17, 0.00625], [0.14, 0.25], [0.14, 0.375], [2.24, 1.0], [1.12, 0.016666666666666666], [0.28, 1.0], [2.24, 0.004166666666666667], [0.14, 0.0020833333333333333], [1.5, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.7, 1.0], [0.2, 1.0], [0.9, 0.004166666666666667], [0.4, 1.0], [0.5, 1.0], [1.0, 1.0], [1.33, 1.0], [1.8, 1.0], [2.0, 1.0], [0.6, 1.0], [1.2, 1.0], [0.8, 0.025], [1.12, 0.33541666666666664], [1.12, 0.016666666666666666], [0.75, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.28, 0.25], [0.28, 0.008333333333333333], [0.42, 0.08125], [0.75, 0.2625], [1.0, 1.0], [1.12, 1.0], [1.5, 1.0], [1.5, 0.008333333333333333], [0.75, 0.0020833333333333333], [0.56, 0.0020833333333333333], [1.12, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.14, 0.28541666666666665], [0.14, 0.01875], [0.28, 0.31666666666666665], [1.0, 1.0], [1.7, 1.0], [1.7, 0.0125], [0.28, 1.0], [1.0, 0.010416666666666666], [1.12, 0.09583333333333334], [0.42, 0.0020833333333333333], [0.56, 1.0], [0.75, 1.0], [1.5, 1.0], [2.24, 1.0], [0.14, 0.008333333333333333], [1.0, 0.3854166666666667], [0.7, 0.008333333333333333], [1.12, 1.0], [1.0, 0.0020833333333333333], [0.42, 0.30416666666666664], [0.7, 0.30833333333333335], [1.0, 1.0], [1.12, 1.0], [0.7, 0.0125], [1.12, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.56, 0.3333333333333333], [0.7, 0.35208333333333336], [1.0, 1.0], [1.12, 1.0], [0.7, 0.010416666666666666], [1.4, 0.004166666666666667], [1.0, 0.00625], [1.12, 0.0020833333333333333], [0.42, 0.23333333333333334], [0.42, 0.022916666666666665], [1.5, 0.39791666666666664], [0.75, 1.0], [0.19, 0.38125], [0.094, 0.004166666666666667], [0.19, 0.3625], [0.75, 1.0], [1.0, 1.0], [0.75, 0.008333333333333333], [0.19, 0.004166666666666667], [1.0, 1.0], [1.4, 0.0020833333333333333], [0.7, 1.0], [1.5, 1.0], [1.12, 1.0], [0.56, 1.0], [0.28, 0.010416666666666666], [1.7, 1.0], [0.42, 0.014583333333333334], [0.56, 0.26666666666666666], [0.19, 0.2916666666666667], [0.19, 0.020833333333333332], [0.75, 0.3958333333333333], [1.0, 1.0], [0.75, 0.020833333333333332], [1.0, 0.0020833333333333333], [0.56, 0.6333333333333333], [0.56, 0.014583333333333334], [0.19, 0.45], [0.19, 0.016666666666666666], [0.19, 0.3020833333333333], [0.75, 0.016666666666666666], [0.19, 0.0020833333333333333], [0.94, 0.008333333333333333], [0.75, 0.0020833333333333333], [1.0, 0.022916666666666665], [0.094, 0.09583333333333334], [1.5, 2.41875], [0.19, 0.029166666666666667], [0.56, 1.0], [0.75, 1.0], [0.94, 0.008333333333333333], [1.8, 0.008333333333333333], [2.24, 0.0625], [3.0, 0.0125], [4.5, 0.5958333333333333], [4.5, 0.66875], [4.5, 0.01875], [4.0, 0.07291666666666667], [4.5, 0.34375], [4.5, 0.010416666666666666], [6.0, 0.31875], [1.33, 0.06458333333333334], [1.7, 0.2125], [2.24, 0.03333333333333333], [2.24, 0.022916666666666665], [4.0, 0.058333333333333334], [4.0, 0.0125], [5.34, 0.010416666666666666], [4.5, 0.63125], [4.5, 0.022916666666666665], [3.36, 1.0], [4.0, 0.68125], [4.0, 0.0125], [1.2, 0.9458333333333333], [1.5, 0.03333333333333333], [1.5, 0.022916666666666665], [3.0, 0.004166666666666667], [1.7, 0.016666666666666666], [1.8, 0.00625], [1.33, 0.00625], [5.34, 0.008333333333333333], [6.0, 0.04791666666666667], [3.36, 0.04791666666666667], [1.8, 0.00625], [2.24, 0.010416666666666666], [3.0, 0.10625], [2.24, 0.010416666666666666], [4.0, 0.04375], [4.0, 0.0125], [6.0, 0.10833333333333334], [3.56, 0.625], [3.0, 0.6625], [3.0, 0.010416666666666666], [4.5, 0.29375], [3.36, 0.07291666666666667], [3.56, 0.29375], [3.56, 0.022916666666666665], [4.76, 0.33125], [1.8, 0.42916666666666664], [4.5, 0.004166666666666667], [2.67, 0.004166666666666667], [1.8, 0.004166666666666667], [1.12, 0.00625], [1.33, 0.0020833333333333333], [2.0, 0.0020833333333333333], [2.24, 0.0125], [1.5, 0.029166666666666667], [6.0, 1.0], [4.76, 0.014583333333333334], [4.0, 0.575], [4.0, 0.01875], [2.24, 0.00625], [2.67, 0.29583333333333334], [3.56, 1.0], [3.56, 0.008333333333333333], [2.67, 0.0020833333333333333], [3.36, 0.48541666666666666], [3.36, 0.008333333333333333], [3.0, 1.2708333333333333], [1.2, 0.05], [1.0, 0.0020833333333333333], [1.2, 0.01875], [1.5, 0.07916666666666666], [1.8, 0.010416666666666666], [1.8, 0.022916666666666665], [3.56, 0.025], [2.4, 0.0020833333333333333], [3.0, 0.008333333333333333], [3.56, 0.008333333333333333], [2.67, 0.00625], [2.0, 0.00625], [3.36, 1.0], [4.5, 0.0020833333333333333], [1.12, 0.0020833333333333333], [2.24, 0.022916666666666665], [4.0, 0.016666666666666666], [1.33, 0.2708333333333333], [3.56, 0.06458333333333334], [3.0, 0.33541666666666664], [3.0, 0.014583333333333334], [3.36, 0.3125], [2.67, 0.0020833333333333333], [2.4, 0.39166666666666666], [3.0, 1.0], [2.4, 0.010416666666666666], [3.0, 0.0020833333333333333], [3.56, 1.0], [2.4, 0.30625], [3.0, 1.0], [3.56, 1.0], [2.4, 0.01875], [3.56, 0.0020833333333333333], [3.0, 1.0], [3.56, 0.31666666666666665], [3.56, 0.0125], [4.76, 0.27708333333333335], [0.8, 0.325], [1.2, 0.10416666666666667], [1.2, 0.0125], [2.67, 0.035416666666666666], [2.24, 0.010416666666666666], [1.6, 0.0020833333333333333], [2.67, 1.0], [4.5, 0.00625], [0.8, 0.49375], [1.2, 1.0], [1.6, 1.0], [2.24, 1.0], [2.67, 1.0], [4.5, 1.0], [1.6, 0.016666666666666666], [2.67, 0.0020833333333333333], [4.5, 0.0020833333333333333], [1.2, 1.0], [0.8, 1.0], [2.24, 0.004166666666666667], [3.56, 0.39166666666666666], [1.8, 0.016666666666666666], [3.56, 0.00625], [1.8, 0.0020833333333333333], [0.4, 1.0], [0.4, 0.375], [2.4, 1.0], [2.0, 0.01875], [4.0, 0.0020833333333333333], [2.4, 1.0], [0.4, 0.0020833333333333333], [0.2, 1.0], [3.17, 1.0], [1.0, 0.39375], [1.2, 1.0], [1.6, 1.0], [1.8, 0.014583333333333334], [1.0, 0.004166666666666667], [1.6, 1.0], [1.2, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.2, 0.12083333333333333], [4.5, 0.175], [0.6, 0.19166666666666668], [0.4, 1.0], [0.2, 0.004166666666666667], [0.5, 0.004166666666666667], [0.4, 0.008333333333333333], [4.76, 0.4479166666666667], [2.24, 0.016666666666666666], [3.36, 1.0], [3.36, 0.022916666666666665], [2.24, 1.0], [0.14, 0.0020833333333333333], [0.28, 0.00625], [1.5, 0.03125], [3.0, 1.0], [1.2, 0.010416666666666666], [0.2, 1.0], [2.4, 0.0020833333333333333], [0.4, 0.004166666666666667], [4.0, 0.0020833333333333333], [0.6, 1.0], [2.67, 0.0020833333333333333], [0.5, 1.0], [1.0, 1.0], [3.56, 0.0020833333333333333], [3.17, 1.0], [0.8, 0.010416666666666666], [2.0, 1.0], [1.6, 0.014583333333333334], [2.24, 0.41458333333333336], [1.5, 0.004166666666666667], [2.24, 0.00625], [2.0, 0.004166666666666667], [0.28, 0.25833333333333336], [0.28, 0.008333333333333333], [0.42, 1.0], [0.75, 0.31666666666666665], [0.56, 0.0020833333333333333], [1.12, 0.008333333333333333], [1.0, 0.00625], [0.14, 0.26666666666666666], [0.16, 0.020833333333333332], [0.14, 0.0020833333333333333], [1.8, 0.28125], [0.14, 0.04791666666666667], [0.28, 1.0], [1.0, 1.0], [1.7, 0.008333333333333333], [0.28, 0.0020833333333333333], [0.14, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.0, 0.008333333333333333], [1.12, 1.0], [2.24, 0.01875], [0.75, 0.0020833333333333333], [0.42, 0.0020833333333333333], [2.0, 1.0], [0.56, 0.004166666666666667], [3.36, 0.00625], [0.16, 0.027083333333333334], [1.5, 1.0], [1.0, 0.4625], [1.12, 1.0], [1.12, 0.01875], [0.7, 1.0], [1.0, 0.004166666666666667], [0.28, 0.26666666666666666], [0.28, 0.014583333333333334], [0.84, 0.004166666666666667], [0.42, 0.004166666666666667], [0.7, 0.34375], [1.0, 1.0], [1.12, 1.0], [0.7, 0.014583333333333334], [0.28, 0.0020833333333333333], [1.12, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.56, 0.0020833333333333333], [0.28, 1.0], [0.7, 0.63125], [0.14, 0.016666666666666666], [0.28, 1.0], [1.0, 1.0], [1.12, 1.0], [1.4, 0.00625], [0.7, 0.0020833333333333333], [0.28, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.12, 0.004166666666666667], [0.14, 0.004166666666666667], [0.7, 0.5875], [0.84, 0.014583333333333334], [1.0, 1.0], [0.7, 0.008333333333333333], [1.0, 0.004166666666666667], [0.84, 0.008333333333333333], [0.094, 0.325], [0.19, 1.0], [0.28, 0.014583333333333334], [0.094, 0.008333333333333333], [0.19, 0.30416666666666664], [1.12, 0.06458333333333334], [1.12, 0.01875], [1.5, 0.0020833333333333333], [0.75, 1.0], [0.9, 0.004166666666666667], [0.19, 1.0], [1.7, 0.008333333333333333], [1.4, 0.0020833333333333333], [0.14, 1.0], [1.0, 1.0], [0.84, 0.008333333333333333], [0.42, 0.016666666666666666], [0.56, 1.0], [0.7, 1.0], [0.75, 0.03125], [0.28, 0.4708333333333333], [2.24, 0.008333333333333333], [4.5, 1.0], [0.37, 0.28541666666666665], [2.24, 0.30833333333333335], [4.5, 1.0], [4.5, 0.01875], [2.24, 0.0020833333333333333], [0.44, 1.0], [3.36, 0.30416666666666664], [0.56, 0.0020833333333333333], [4.0, 0.004166666666666667], [2.0, 0.0020833333333333333], [1.12, 0.016666666666666666], [2.24, 0.25625], [4.5, 1.0], [2.24, 0.022916666666666665], [4.5, 1.0], [0.75, 0.0020833333333333333], [6.0, 0.3020833333333333], [3.0, 1.0], [0.28, 0.44166666666666665], [3.36, 1.0], [5.34, 0.008333333333333333], [0.28, 1.0], [0.37, 1.0], [3.36, 0.0020833333333333333], [2.67, 1.0], [0.44, 1.0], [0.75, 1.0], [3.0, 1.0], [0.9, 1.0], [4.0, 1.0], [0.19, 0.0020833333333333333], [2.0, 1.0], [0.56, 1.0], [4.5, 1.0], [2.24, 0.0020833333333333333], [1.5, 0.0020833333333333333], [0.14, 0.00625], [6.0, 0.00625], [4.5, 0.5], [2.24, 1.0], [0.67, 0.325], [0.84, 0.0020833333333333333], [0.56, 1.0], [5.34, 0.29375], [2.67, 0.014583333333333334], [3.36, 1.0], [5.34, 0.008333333333333333], [3.36, 1.0], [2.67, 0.0020833333333333333], [1.0, 1.0], [2.24, 0.6145833333333334], [2.67, 1.0], [0.5, 0.022916666666666665], [2.24, 1.0], [2.67, 1.0], [0.15, 0.32083333333333336], [2.24, 0.00625], [2.67, 0.0020833333333333333], [5.34, 1.0], [1.0, 1.0], [0.84, 1.0], [0.5, 1.0], [0.56, 0.0020833333333333333], [0.14, 1.0], [0.28, 1.0], [3.36, 1.0], [4.5, 1.0], [0.67, 0.0020833333333333333], [0.15, 0.016666666666666666], [6.0, 0.004166666666666667], [0.3, 0.0020833333333333333], [3.0, 0.0020833333333333333], [3.56, 1.0], [0.15, 1.0], [3.0, 0.4479166666666667], [3.56, 1.0], [3.56, 0.010416666666666666], [1.8, 1.0], [3.0, 0.004166666666666667], [0.6, 0.32083333333333336], [0.9, 0.004166666666666667], [1.8, 0.26875], [3.0, 1.0], [6.0, 1.0], [2.4, 0.020833333333333332], [1.5, 1.0], [3.0, 1.0], [1.2, 1.0], [1.8, 0.0020833333333333333], [3.36, 0.3375], [1.7, 0.00625], [1.0, 1.0], [0.9, 0.2875], [1.8, 1.0], [3.56, 1.0], [3.56, 0.016666666666666666], [1.8, 0.004166666666666667], [0.9, 1.0], [2.4, 0.26875], [2.4, 0.01875], [4.76, 0.0020833333333333333], [1.7, 0.30833333333333335], [3.36, 1.0], [0.6, 1.0], [1.2, 1.0], [3.56, 1.0], [0.3, 0.0020833333333333333], [1.5, 1.0], [2.4, 1.0], [1.8, 1.0], [3.0, 1.0], [4.76, 1.0], [1.0, 0.0020833333333333333], [0.9, 1.0], [0.15, 0.0020833333333333333], [4.5, 0.05416666666666667], [0.22, 0.0020833333333333333], [0.11, 1.0], [2.67, 1.0], [2.24, 0.0020833333333333333], [0.11, 0.020833333333333332], [0.44, 0.21458333333333332], [0.67, 0.3104166666666667], [4.0, 1.0], [0.9, 0.004166666666666667], [2.0, 0.0020833333333333333], [3.56, 0.29375], [1.8, 1.0], [2.0, 0.36041666666666666], [2.67, 0.014583333333333334], [3.36, 0.00625], [2.0, 0.0020833333333333333], [1.7, 1.0], [0.28, 1.0], [0.14, 0.0020833333333333333], [2.67, 0.0020833333333333333], [0.44, 1.0], [0.9, 1.0], [4.0, 1.0], [3.56, 1.0], [4.5, 0.0020833333333333333], [2.24, 0.0020833333333333333], [1.8, 1.0], [0.67, 0.0020833333333333333], [0.22, 0.03333333333333333], [0.14, 0.016666666666666666], [0.33, 0.1375], [0.17, 0.004166666666666667], [1.7, 0.3229166666666667], [2.0, 0.016666666666666666], [2.67, 1.0], [0.42, 0.00625], [1.7, 1.0], [0.21, 0.0020833333333333333], [2.0, 1.0], [2.67, 1.0], [0.5, 0.3020833333333333], [0.25, 1.0], [0.25, 0.3770833333333333], [2.4, 0.008333333333333333], [3.56, 1.0], [1.8, 1.0], [0.25, 1.0], [0.125, 0.00625], [0.21, 0.008333333333333333], [0.17, 1.0], [0.28, 0.0020833333333333333], [2.67, 0.0020833333333333333], [2.0, 0.004166666666666667], [0.33, 1.0], [0.5, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.42, 1.0], [3.36, 0.0020833333333333333], [1.8, 0.36875], [2.4, 1.0], [2.4, 0.014583333333333334], [1.5, 0.0020833333333333333], [3.0, 0.0020833333333333333], [1.8, 1.0], [0.5, 0.2875], [3.36, 1.0], [1.7, 0.004166666666666667], [1.8, 0.3145833333333333], [3.56, 1.0], [3.56, 0.020833333333333332], [1.8, 1.0], [0.9, 0.0020833333333333333], [0.75, 1.0], [0.75, 0.29583333333333334], [1.8, 1.0], [3.56, 1.0], [0.75, 0.014583333333333334], [3.56, 0.00625], [1.8, 1.0], [0.25, 0.26666666666666666], [0.5, 1.0], [1.8, 1.0], [3.56, 1.0], [0.5, 0.0125], [0.25, 0.004166666666666667], [3.56, 0.00625], [1.8, 1.0], [4.76, 0.25833333333333336], [2.4, 0.008333333333333333], [2.4, 0.010416666666666666], [0.1, 0.35833333333333334], [0.2, 0.00625], [0.1, 0.008333333333333333], [0.2, 0.016666666666666666], [0.125, 0.0625], [1.7, 0.010416666666666666], [3.36, 1.0], [0.25, 1.0], [0.9, 1.0], [2.4, 1.0], [1.8, 1.0], [4.76, 0.0020833333333333333], [0.5, 1.0], [1.5, 1.0], [3.0, 1.0], [3.56, 1.0], [0.75, 0.020833333333333332], [4.5, 0.022916666666666665], [2.67, 0.0020833333333333333], [2.24, 0.004166666666666667], [2.24, 0.4166666666666667], [2.67, 1.0], [4.5, 1.0], [2.67, 0.0125], [0.4, 0.0020833333333333333], [0.6, 0.0020833333333333333], [4.5, 1.0], [2.24, 0.00625], [0.4, 0.3458333333333333], [0.4, 0.020833333333333332], [0.8, 0.0020833333333333333], [3.56, 1.0], [1.8, 1.0], [0.6, 0.36041666666666666], [0.8, 1.0], [0.8, 0.008333333333333333], [0.6, 1.0], [2.4, 1.0], [2.0, 0.0020833333333333333], [4.0, 1.0], [3.17, 0.004166666666666667], [0.4, 0.36875], [2.0, 1.0], [0.4, 0.0125], [2.0, 0.0020833333333333333], [1.6, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.4, 0.46041666666666664], [0.4, 0.008333333333333333], [0.2, 1.0], [0.5, 0.0020833333333333333], [0.6, 0.0020833333333333333], [0.2, 0.0020833333333333333], [3.17, 0.0020833333333333333], [3.56, 1.0], [2.4, 1.0], [2.67, 0.0020833333333333333], [0.4, 1.0], [1.0, 1.0], [1.6, 1.0], [1.8, 1.0], [4.0, 1.0], [2.0, 0.0020833333333333333], [0.8, 1.0], [2.24, 0.010416666666666666], [4.5, 1.0], [0.5, 0.014583333333333334], [3.36, 0.0020833333333333333], [4.5, 1.0], [2.24, 0.004166666666666667], [0.28, 1.0], [0.14, 0.0020833333333333333], [3.0, 0.0020833333333333333], [2.24, 0.4], [1.5, 0.0125], [2.24, 1.0], [2.0, 0.008333333333333333], [0.42, 0.28958333333333336], [1.5, 0.29791666666666666], [2.0, 1.0], [2.24, 1.0], [3.0, 1.0], [1.5, 0.008333333333333333], [3.0, 1.0], [2.0, 0.0020833333333333333], [2.24, 1.0], [0.14, 0.27708333333333335], [0.14, 0.0125], [2.0, 0.33958333333333335], [3.36, 1.0], [0.28, 0.016666666666666666], [2.24, 1.0], [3.36, 0.00625], [2.0, 0.0020833333333333333], [0.28, 1.0], [2.24, 0.0020833333333333333], [0.42, 0.05625], [0.14, 1.0], [3.0, 0.0020833333333333333], [1.5, 0.0020833333333333333], [4.5, 0.008333333333333333], [0.7, 0.4895833333333333], [1.12, 0.0020833333333333333], [1.0, 0.008333333333333333], [0.28, 0.22083333333333333], [0.28, 0.01875], [0.7, 0.33125], [1.0, 1.0], [1.12, 1.0], [0.42, 0.008333333333333333], [1.12, 1.0], [0.7, 1.0], [1.0, 0.004166666666666667], [0.56, 0.31666666666666665], [0.7, 0.32708333333333334], [1.0, 1.0], [1.12, 1.0], [1.4, 0.008333333333333333], [0.7, 1.0], [1.12, 0.0020833333333333333], [1.0, 1.0], [0.14, 0.32083333333333336], [0.14, 0.35833333333333334], [0.28, 1.0], [0.7, 1.0], [1.0, 1.0], [1.12, 1.0], [0.42, 0.008333333333333333], [0.7, 0.00625], [0.28, 1.0], [1.12, 0.0020833333333333333], [1.0, 0.00625], [0.14, 1.0], [0.28, 0.8083333333333333], [1.12, 1.0], [1.12, 0.020833333333333332], [1.5, 1.0], [0.75, 0.0020833333333333333], [0.28, 1.0], [0.19, 0.0020833333333333333], [0.9, 1.0], [2.0, 0.10208333333333333], [0.14, 0.0125], [1.0, 0.004166666666666667], [1.4, 1.0], [0.7, 1.0], [0.28, 1.0], [3.36, 0.0020833333333333333], [0.56, 0.0125], [2.24, 1.0], [0.75, 0.19166666666666668], [4.5, 0.24166666666666667], [2.24, 0.0020833333333333333], [0.19, 0.2520833333333333], [0.37, 0.00625], [0.19, 0.004166666666666667], [2.24, 0.3416666666666667], [4.5, 1.0], [3.56, 0.00625], [2.24, 0.0020833333333333333], [0.44, 0.0020833333333333333], [4.5, 0.004166666666666667], [1.12, 0.03333333333333333], [0.56, 0.2625], [3.36, 1.0], [4.0, 0.010416666666666666], [2.0, 0.0020833333333333333], [0.44, 0.2375], [2.24, 0.014583333333333334], [4.5, 1.0], [0.44, 0.008333333333333333], [2.24, 0.014583333333333334], [4.5, 1.0], [6.0, 0.27291666666666664], [3.0, 1.0], [1.5, 0.3770833333333333], [3.36, 1.0], [0.37, 0.010416666666666666], [3.56, 1.0], [4.5, 1.0], [0.9, 1.0], [6.0, 0.0020833333333333333], [0.19, 1.0], [4.0, 1.0], [2.0, 1.0], [0.56, 1.0], [3.0, 0.0020833333333333333], [2.24, 1.0], [0.28, 0.008333333333333333], [3.36, 1.0], [5.34, 0.0020833333333333333], [0.14, 1.0], [2.67, 1.0], [0.44, 0.022916666666666665], [2.67, 0.4], [4.5, 0.01875], [2.67, 0.0020833333333333333], [2.24, 1.0], [0.67, 0.30416666666666664], [0.56, 0.0020833333333333333], [0.84, 1.0], [0.67, 0.3125], [2.67, 1.0], [3.36, 1.0], [5.34, 1.0], [0.67, 0.014583333333333334], [1.0, 1.0], [5.34, 1.0], [3.36, 0.0020833333333333333], [2.67, 0.004166666666666667], [0.5, 0.3416666666666667], [0.28, 0.29375], [2.24, 1.0], [2.67, 1.0], [0.28, 0.008333333333333333], [2.24, 1.0], [2.67, 0.004166666666666667], [0.14, 0.24375], [0.14, 0.022916666666666665], [2.24, 0.46875], [6.0, 0.0020833333333333333], [3.0, 1.0], [0.56, 1.0], [2.67, 0.0020833333333333333], [0.3, 1.0], [0.5, 0.0020833333333333333], [0.67, 1.0], [0.84, 1.0], [0.15, 1.0], [4.5, 0.0020833333333333333], [1.0, 1.0], [3.56, 1.0], [5.34, 1.0], [3.36, 1.0], [0.28, 0.008333333333333333], [0.14, 0.03333333333333333], [0.3, 0.4479166666666667], [3.56, 0.016666666666666666], [0.3, 0.004166666666666667], [1.8, 0.004166666666666667], [3.56, 1.0], [0.3, 0.3104166666666667], [0.3, 0.016666666666666666], [0.6, 0.0020833333333333333], [6.0, 0.20625], [3.0, 0.04791666666666667], [3.0, 0.014583333333333334], [1.5, 1.0], [1.2, 0.0020833333333333333], [0.9, 0.01875], [0.6, 0.2520833333333333], [0.6, 0.020833333333333332], [3.36, 0.0020833333333333333], [1.7, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.8, 0.29375], [3.56, 1.0], [3.56, 0.008333333333333333], [1.8, 0.004166666666666667], [2.4, 0.26875], [0.11, 1.0], [4.76, 1.0], [0.22, 0.0020833333333333333], [0.11, 0.020833333333333332], [1.7, 0.0020833333333333333], [3.36, 0.0020833333333333333], [1.2, 1.0], [0.3, 1.0], [1.5, 1.0], [3.0, 0.0020833333333333333], [0.6, 1.0], [1.0, 1.0], [1.8, 1.0], [3.56, 1.0], [0.9, 1.0], [0.15, 0.03958333333333333], [0.22, 0.04791666666666667], [4.76, 0.016666666666666666], [4.5, 0.004166666666666667], [0.22, 0.004166666666666667], [2.67, 0.0020833333333333333], [2.24, 0.0020833333333333333], [0.11, 0.0020833333333333333], [0.44, 0.33125], [2.67, 0.24583333333333332], [4.0, 0.008333333333333333], [2.67, 1.0], [0.9, 1.0], [2.0, 0.0020833333333333333], [3.56, 0.29375], [1.8, 0.004166666666666667], [2.4, 0.2833333333333333], [0.11, 0.06458333333333334], [2.0, 1.0], [2.67, 1.0], [3.36, 0.014583333333333334], [2.0, 0.004166666666666667], [0.28, 1.0], [1.7, 0.0020833333333333333], [0.14, 1.0], [2.67, 0.0020833333333333333], [4.0, 0.0020833333333333333], [0.44, 1.0], [2.24, 1.0], [4.5, 1.0], [3.56, 1.0], [0.22, 0.0020833333333333333], [1.8, 1.0], [0.9, 0.0020833333333333333], [0.33, 0.13958333333333334], [0.17, 0.010416666666666666], [1.7, 0.29791666666666666], [2.0, 1.0], [2.67, 1.0], [0.21, 0.008333333333333333], [1.7, 0.0020833333333333333], [0.42, 0.0020833333333333333], [2.67, 1.0], [2.0, 0.0020833333333333333], [0.28, 0.25833333333333336], [0.28, 0.010416666666666666], [0.25, 0.0020833333333333333], [0.5, 0.004166666666666667], [0.25, 0.43125], [0.17, 0.008333333333333333], [2.67, 1.0], [0.21, 1.0], [0.33, 0.0020833333333333333], [2.0, 1.0], [0.28, 1.0], [1.7, 1.0], [0.42, 1.0], [0.14, 1.0], [3.56, 0.0020833333333333333], [0.25, 0.004166666666666667], [1.8, 0.0020833333333333333], [3.36, 0.0020833333333333333], [0.125, 0.0020833333333333333], [2.4, 1.0], [0.5, 0.008333333333333333], [2.67, 0.26458333333333334], [2.4, 0.13541666666666666], [1.8, 0.016666666666666666], [2.4, 0.0020833333333333333], [3.0, 0.004166666666666667], [1.5, 1.0], [1.8, 0.0020833333333333333], [0.25, 0.3125], [0.5, 0.010416666666666666], [3.36, 1.0], [0.25, 0.0020833333333333333], [1.7, 0.004166666666666667], [0.5, 0.31875], [1.8, 1.0], [3.56, 1.0], [0.75, 0.014583333333333334], [3.56, 0.004166666666666667], [0.5, 0.0020833333333333333], [1.8, 1.0], [0.6, 0.004166666666666667], [0.25, 0.3104166666666667], [0.5, 0.016666666666666666], [1.8, 1.0], [3.56, 1.0], [0.25, 0.00625], [0.5, 0.0020833333333333333], [1.8, 1.0], [3.56, 1.0], [0.5, 0.24791666666666667], [1.8, 1.0], [3.56, 1.0], [0.5, 0.016666666666666666], [3.56, 0.0020833333333333333], [1.8, 0.0020833333333333333], [2.4, 0.29791666666666666], [4.76, 0.0125], [2.4, 0.00625], [0.1, 0.34375], [0.2, 1.0], [0.1, 0.022916666666666665], [0.2, 1.0], [0.25, 0.05625], [3.36, 1.0], [1.7, 1.0], [4.76, 0.0020833333333333333], [0.75, 1.0], [1.5, 1.0], [3.56, 1.0], [0.5, 1.0], [2.4, 1.0], [3.0, 1.0], [1.8, 1.0], [0.125, 0.0020833333333333333], [0.6, 1.0], [2.67, 0.0020833333333333333], [4.5, 0.041666666666666664], [2.67, 0.00625], [2.24, 1.0], [2.24, 0.36875], [2.67, 1.0], [0.6, 0.016666666666666666], [0.4, 1.0], [2.24, 0.0020833333333333333], [2.67, 0.0020833333333333333], [0.8, 0.425], [3.56, 1.0], [1.8, 0.0020833333333333333], [0.8, 0.35208333333333336], [2.4, 0.010416666666666666], [1.6, 0.0020833333333333333], [0.8, 1.0], [4.0, 1.0], [2.0, 0.0020833333333333333], [3.17, 0.004166666666666667], [0.4, 0.49375], [0.8, 1.0], [0.4, 0.020833333333333332], [1.0, 0.0020833333333333333], [0.8, 1.0], [0.6, 0.010416666666666666], [0.4, 0.07916666666666666], [0.8, 1.0], [0.8, 0.025], [0.5, 1.0], [0.4, 1.0], [0.2, 1.0], [4.5, 0.45625], [2.24, 0.1125], [3.36, 0.008333333333333333], [4.5, 1.0], [0.28, 1.0], [2.24, 0.0020833333333333333], [0.14, 1.0], [0.2, 0.00625], [2.67, 1.0], [3.0, 1.0], [0.4, 1.0], [2.4, 1.0], [3.56, 1.0], [4.0, 1.0], [3.17, 1.0], [1.8, 1.0], [2.0, 1.0], [1.6, 0.0020833333333333333], [1.0, 1.0], [0.8, 0.022916666666666665], [0.5, 0.014583333333333334], [3.0, 0.07916666666666666], [2.24, 0.35208333333333336], [1.5, 0.010416666666666666], [2.24, 0.00625], [2.0, 0.0020833333333333333], [4.5, 0.029166666666666667], [0.28, 0.23958333333333334], [0.42, 0.020833333333333332], [0.28, 0.004166666666666667], [1.5, 0.2791666666666667], [0.28, 0.016666666666666666], [2.0, 1.0], [2.24, 1.0], [1.5, 0.004166666666666667], [3.0, 0.0020833333333333333], [2.24, 0.0020833333333333333], [0.28, 0.0020833333333333333], [2.0, 0.004166666666666667], [0.14, 0.28958333333333336], [0.14, 0.022916666666666665], [0.28, 0.3125], [3.36, 1.0], [2.0, 0.016666666666666666], [2.24, 1.0], [3.36, 0.00625], [0.28, 1.0], [2.0, 0.0020833333333333333], [2.24, 1.0], [0.42, 0.0020833333333333333], [3.0, 0.0020833333333333333], [1.5, 1.0], [0.7, 0.5416666666666666], [1.12, 1.0], [1.0, 0.00625], [0.28, 0.20416666666666666], [0.28, 0.008333333333333333], [0.7, 0.375], [1.12, 1.0], [1.0, 0.016666666666666666], [1.12, 0.00625], [0.7, 1.0], [0.42, 1.0], [1.0, 0.004166666666666667], [0.56, 0.2375], [0.28, 0.4395833333333333], [0.7, 1.0], [1.0, 1.0], [1.12, 1.0], [1.4, 0.008333333333333333], [0.7, 1.0], [0.14, 0.008333333333333333], [1.12, 1.0], [0.28, 0.00625], [1.0, 1.0], [0.14, 0.0020833333333333333], [0.42, 0.04791666666666667], [3.36, 1.0], [0.56, 0.05625], [2.0, 1.0], [2.24, 1.0], [0.14, 0.6541666666666667], [0.28, 1.0], [0.7, 1.0], [1.0, 1.0], [1.12, 1.0], [1.12, 0.010416666666666666], [0.7, 1.0], [0.28, 0.0020833333333333333], [0.14, 0.0020833333333333333], [1.0, 1.0], [0.3, 1.2541666666666667], [0.75, 0.0020833333333333333], [0.15, 0.0020833333333333333], [0.14, 0.0020833333333333333], [0.28, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.12, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 0.18125], [1.0, 0.38125], [1.12, 0.26875], [1.12, 0.01875], [0.6, 0.020833333333333332], [0.9, 0.175], [1.12, 0.16875], [1.12, 0.025], [1.5, 0.08125], [3.0, 1.0], [2.67, 0.07083333333333333], [2.67, 0.014583333333333334], [2.24, 0.27708333333333335], [2.0, 0.31875], [2.24, 0.3], [2.24, 0.014583333333333334], [0.17, 0.38125], [0.33, 0.06458333333333334], [0.84, 0.00625], [1.0, 1.0], [1.12, 1.0], [0.15, 1.0], [0.9, 1.0], [2.24, 1.0], [1.5, 1.0], [0.75, 1.0], [0.6, 0.0020833333333333333], [3.0, 1.0], [2.0, 1.0], [0.3, 0.004166666666666667], [1.12, 0.035416666666666666], [1.0, 0.28958333333333336], [1.12, 0.21875], [1.12, 0.014583333333333334], [0.67, 0.08958333333333333], [1.0, 0.12083333333333333], [1.0, 0.010416666666666666], [1.33, 0.15833333333333333], [3.36, 0.05], [1.7, 0.00625], [2.24, 0.31875], [2.0, 0.3020833333333333], [2.24, 0.28958333333333336], [2.24, 0.0125], [0.19, 0.26458333333333334], [0.37, 0.1125], [0.9, 0.0020833333333333333], [3.36, 0.016666666666666666], [0.67, 0.0020833333333333333], [1.12, 1.0], [1.7, 1.0], [2.24, 1.0], [1.33, 0.0020833333333333333], [1.0, 1.0], [0.33, 1.0], [0.17, 0.004166666666666667], [2.0, 1.0], [0.84, 0.0125], [1.12, 0.15], [1.0, 0.26666666666666666], [1.12, 0.23958333333333334], [1.12, 0.016666666666666666], [0.75, 0.12916666666666668], [3.56, 0.2604166666666667], [1.8, 1.0], [2.24, 0.32708333333333334], [2.0, 0.35], [2.24, 0.27708333333333335], [2.24, 0.010416666666666666], [1.5, 0.3375], [2.0, 0.035416666666666666], [3.36, 0.016666666666666666], [2.0, 0.0020833333333333333], [3.56, 0.49375], [2.0, 0.014583333333333334], [3.56, 0.008333333333333333], [2.0, 0.0020833333333333333], [2.0, 0.3416666666666667], [3.36, 1.0], [3.36, 0.010416666666666666], [2.0, 0.004166666666666667], [0.75, 0.24166666666666667], [0.75, 0.014583333333333334], [1.5, 0.1625], [1.8, 1.0], [3.0, 0.008333333333333333], [1.8, 1.0], [1.5, 0.0020833333333333333], [1.12, 0.14791666666666667], [1.12, 0.0125], [2.24, 0.13333333333333333], [2.24, 0.008333333333333333], [1.8, 0.29375], [1.8, 0.008333333333333333], [1.5, 0.29583333333333334], [1.5, 0.0125], [0.15, 0.10833333333333334], [3.56, 0.0020833333333333333], [1.8, 1.0], [0.37, 1.0], [0.9, 1.0], [1.0, 1.0], [2.0, 1.0], [3.0, 0.0020833333333333333], [2.24, 1.0], [1.5, 1.0], [3.36, 1.0], [0.19, 0.0020833333333333333], [1.12, 0.004166666666666667], [0.75, 0.04375], [0.75, 0.01875], [0.3, 0.0020833333333333333], [0.15, 0.08125], [1.12, 0.17291666666666666], [1.0, 0.28541666666666665], [1.12, 0.24583333333333332], [1.12, 0.016666666666666666], [0.6, 0.04375], [0.9, 0.13333333333333333], [1.2, 0.13333333333333333], [1.5, 0.11041666666666666], [3.0, 1.0], [2.24, 0.3333333333333333], [2.0, 0.3104166666666667], [2.24, 0.2625], [2.24, 0.008333333333333333], [0.17, 0.24583333333333332], [0.84, 0.12083333333333333], [1.2, 0.0020833333333333333], [0.6, 1.0], [2.24, 1.0], [0.9, 1.0], [1.0, 1.0], [0.75, 1.0], [1.12, 0.0020833333333333333], [1.5, 0.0020833333333333333], [3.0, 0.0020833333333333333], [2.0, 1.0], [0.3, 0.0020833333333333333], [1.12, 0.13541666666666666], [1.0, 0.29583333333333334], [1.12, 0.225], [1.12, 0.016666666666666666], [0.67, 0.05625], [1.0, 0.15208333333333332], [1.0, 0.010416666666666666], [1.33, 0.010416666666666666], [3.36, 0.18333333333333332], [1.7, 0.004166666666666667], [2.24, 0.32708333333333334], [2.0, 0.2916666666666667], [2.24, 0.30833333333333335], [2.24, 0.008333333333333333], [0.19, 0.14166666666666666], [0.67, 0.15833333333333333], [2.24, 1.0], [1.12, 0.0020833333333333333], [1.0, 1.0], [1.33, 1.0], [3.36, 1.0], [0.84, 1.0], [1.7, 1.0], [2.0, 0.0020833333333333333], [0.17, 0.008333333333333333], [0.9, 0.014583333333333334], [0.37, 0.0020833333333333333], [1.12, 0.16041666666666668], [1.0, 0.30625], [1.12, 0.2520833333333333], [1.12, 0.014583333333333334], [0.75, 0.17291666666666666], [1.5, 0.20208333333333334], [1.8, 1.0], [3.56, 1.0], [2.24, 0.3125], [1.0, 0.3375], [1.0, 0.014583333333333334], [2.0, 0.0020833333333333333], [2.24, 0.23958333333333334], [2.24, 0.022916666666666665], [1.12, 0.41041666666666665], [4.0, 0.004166666666666667], [2.4, 0.0020833333333333333], [1.12, 0.004166666666666667], [2.24, 0.46875], [3.56, 0.016666666666666666], [2.24, 0.008333333333333333], [3.56, 1.0], [2.0, 0.375], [3.36, 0.0125], [2.0, 0.00625], [1.5, 0.39791666666666664], [2.24, 0.014583333333333334], [3.56, 1.0], [1.5, 0.00625], [3.56, 0.0020833333333333333], [2.24, 0.0020833333333333333], [2.0, 0.42291666666666666], [3.36, 1.0], [3.36, 0.010416666666666666], [2.0, 0.004166666666666667], [0.19, 0.05], [0.37, 1.0], [0.9, 1.0], [1.8, 0.33541666666666664], [3.0, 0.022916666666666665], [1.8, 1.0], [0.3, 0.31875], [1.5, 1.0], [0.75, 0.0020833333333333333], [1.8, 1.0], [3.0, 1.0], [3.56, 1.0], [2.24, 0.0020833333333333333], [2.4, 1.0], [1.0, 1.0], [2.0, 1.0], [1.12, 0.0020833333333333333], [4.0, 1.0], [3.36, 1.0], [1.5, 0.004166666666666667], [2.24, 0.14583333333333334], [2.0, 0.32083333333333336], [2.24, 0.26875], [2.24, 0.010416666666666666], [1.2, 0.12916666666666668], [1.8, 0.09166666666666666], [2.4, 0.014583333333333334], [3.0, 0.09583333333333334], [6.0, 0.0020833333333333333], [4.5, 0.29791666666666666], [4.0, 0.29791666666666666], [4.5, 0.27708333333333335], [4.5, 0.022916666666666665], [0.33, 0.3145833333333333], [2.24, 0.008333333333333333], [1.2, 1.0], [1.5, 0.0020833333333333333], [4.5, 1.0], [2.4, 1.0], [1.8, 0.0020833333333333333], [2.0, 1.0], [0.3, 0.0020833333333333333], [4.0, 0.0020833333333333333], [3.0, 0.0020833333333333333], [0.67, 0.004166666666666667], [1.7, 0.008333333333333333], [6.0, 0.014583333333333334], [2.24, 0.125], [2.0, 0.2916666666666667], [2.24, 0.2875], [2.24, 0.010416666666666666], [1.33, 0.1125], [2.0, 0.06875], [2.0, 0.01875], [2.67, 0.05416666666666667], [3.36, 0.09166666666666666], [4.5, 0.3541666666666667], [4.0, 0.25], [4.5, 0.2708333333333333], [4.5, 0.01875], [0.37, 0.26458333333333334], [0.75, 0.03958333333333333], [2.24, 0.008333333333333333], [1.7, 1.0], [3.36, 0.0020833333333333333], [4.5, 0.0020833333333333333], [0.75, 0.0020833333333333333], [0.33, 0.0020833333333333333], [1.33, 0.0020833333333333333], [2.67, 1.0], [4.0, 0.00625], [1.8, 0.01875], [2.0, 0.0020833333333333333], [0.67, 0.016666666666666666], [2.24, 0.15833333333333333], [2.0, 0.3125], [2.24, 0.26458333333333334], [2.24, 0.025], [1.5, 0.13541666666666666], [2.24, 0.09583333333333334], [2.24, 0.022916666666666665], [1.8, 0.058333333333333334], [7.13, 0.06041666666666667], [4.5, 0.3375], [4.0, 0.2916666666666667], [4.5, 0.2708333333333333], [4.5, 0.022916666666666665], [3.0, 0.33125], [4.0, 0.029166666666666667], [6.73, 0.022916666666666665], [4.0, 1.0], [7.13, 0.425], [7.13, 0.022916666666666665], [2.24, 0.16875], [2.24, 0.010416666666666666], [4.0, 0.21458333333333332], [6.73, 1.0], [6.73, 0.014583333333333334], [4.0, 0.008333333333333333], [3.0, 0.36041666666666666], [3.0, 0.014583333333333334], [6.0, 0.022916666666666665], [3.56, 0.035416666666666666], [4.0, 0.2625], [4.5, 1.0], [4.0, 0.014583333333333334], [4.5, 0.00625], [3.56, 0.3], [3.56, 0.020833333333333332], [3.0, 0.26666666666666666], [3.0, 0.0125], [0.3, 0.33125], [0.6, 0.0020833333333333333], [6.0, 0.014583333333333334], [4.5, 0.0020833333333333333], [4.0, 1.0], [3.56, 1.0], [3.0, 0.0020833333333333333], [2.24, 0.0020833333333333333], [2.0, 1.0], [0.37, 0.00625], [6.73, 0.010416666666666666], [1.5, 0.008333333333333333], [7.13, 1.0], [1.5, 0.008333333333333333], [2.24, 0.36041666666666666], [2.0, 0.22916666666666666], [2.24, 0.26666666666666666], [2.24, 0.008333333333333333], [1.2, 0.0625], [1.8, 0.17916666666666667], [2.4, 0.1], [6.0, 0.05416666666666667], [3.0, 0.004166666666666667], [4.5, 0.31666666666666665], [4.0, 0.31875], [4.5, 0.3], [4.5, 0.01875], [1.8, 0.008333333333333333], [1.2, 0.004166666666666667], [2.4, 1.0], [2.0, 0.0020833333333333333], [2.24, 1.0], [1.5, 1.0], [3.0, 0.004166666666666667], [4.5, 1.0], [0.3, 1.0], [4.0, 1.0], [0.6, 0.01875], [0.67, 0.00625], [0.33, 0.035416666666666666], [6.0, 0.00625], [1.7, 0.008333333333333333], [2.24, 0.075], [2.0, 0.2708333333333333], [2.24, 0.2791666666666667], [2.24, 0.014583333333333334], [1.33, 0.30833333333333335], [6.73, 0.0625], [3.36, 0.008333333333333333], [4.5, 0.3333333333333333], [4.0, 0.28541666666666665], [4.5, 0.26666666666666666], [4.5, 0.022916666666666665], [2.24, 1.0], [3.36, 0.004166666666666667], [4.0, 1.0], [4.5, 0.0020833333333333333], [1.7, 1.0], [2.0, 0.0020833333333333333], [6.73, 1.0], [1.33, 1.0], [0.67, 0.0020833333333333333], [0.33, 0.00625], [0.28, 0.025], [1.12, 0.30833333333333335], [1.5, 0.3625], [1.7, 0.3104166666666667], [2.24, 0.4270833333333333], [3.0, 0.30416666666666664], [3.36, 0.3958333333333333], [2.24, 0.41041666666666665], [2.24, 0.016666666666666666], [4.5, 0.50625], [6.0, 0.11041666666666666], [6.73, 0.08333333333333333], [8.98, 0.11875], [0.28, 4.49375], [1.12, 1.0], [1.5, 1.0], [1.7, 1.0], [2.24, 1.0], [3.0, 1.0], [3.36, 1.0], [4.5, 1.0], [6.0, 1.0], [6.73, 1.0], [8.98, 1.0]] +21:48:43 刷新音轨0 +21:48:43 刷新音轨0 +21:48:43 刷新音轨0 +21:48:48 刷新音轨1 +21:48:49 刷新音轨0 +21:48:50 刷新音轨2 +21:48:59 退出 +21:49:16 程序正常退出 diff --git a/log/2022-01-18 21_49_21.msct.log b/log/2022-01-18 21_49_21.msct.log new file mode 100644 index 0000000..382d127 --- /dev/null +++ b/log/2022-01-18 21_49_21.msct.log @@ -0,0 +1,8 @@ +21:49:21 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\框架\v0.1.0-not my updata\Musicreater.py +21:49:21 启动root.mainloop(窗口) +21:49:34 刷新音轨1 +21:49:34 刷新音轨1 +21:49:35 刷新音轨2 +21:49:35 刷新音轨2 +21:49:57 退出 +21:49:57 程序正常退出 diff --git a/log/2022-01-18 21_50_44.msct.log b/log/2022-01-18 21_50_44.msct.log new file mode 100644 index 0000000..8d4b7d8 --- /dev/null +++ b/log/2022-01-18 21_50_44.msct.log @@ -0,0 +1,3 @@ +21:50:44 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\框架\v0.1.0-not my updata\Musicreater.py +21:50:44 启动root.mainloop(窗口) +21:50:50 无法打开L:/0WorldMusicCreater-MFMS new edition/框架/v0.1.0-not my updata/test.msct diff --git a/log/2022-01-18 21_51_22.msct.log b/log/2022-01-18 21_51_22.msct.log new file mode 100644 index 0000000..2995f79 --- /dev/null +++ b/log/2022-01-18 21_51_22.msct.log @@ -0,0 +1,4 @@ +21:51:22 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\框架\v0.1.0-not my updata\Musicreater.py +21:51:22 启动root.mainloop(窗口) +21:52:52 退出 +21:52:52 程序正常退出 diff --git a/log/2022-01-19 10_05_27.msct.log b/log/2022-01-19 10_05_27.msct.log new file mode 100644 index 0000000..c520879 --- /dev/null +++ b/log/2022-01-19 10_05_27.msct.log @@ -0,0 +1,7896 @@ +10:05:27 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\框架\v0.1.0-not my updata\Musicreater.py +10:05:28 启动root.mainloop(窗口) +10:07:11 从midi导入音乐 +10:07:46 元信息MetaMessage('set_tempo', tempo=500000, time=0) +10:07:46 元信息MetaMessage('time_signature', numerator=4, denominator=4, clocks_per_click=24, notated_32nd_notes_per_beat=8, time=0) +10:07:46 元信息MetaMessage('end_of_track', time=1) +10:07:46 音符增加[] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=53', '426'] +10:07:46 延续时间426tick--:添加音符[1.5, 0.8875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=35', '2'] +10:07:46 延续时间2tick--:添加音符[0.75, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=38', '1'] +10:07:46 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=58', '359'] +10:07:46 延续时间359tick--:添加音符[2.24, 0.7479166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=48', '1'] +10:07:46 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '348'] +10:07:46 延续时间348tick--:添加音符[2.24, 0.725] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '8'] +10:07:46 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=66', '2'] +10:07:46 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=47', '2'] +10:07:46 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=67', '152'] +10:07:46 延续时间152tick--:添加音符[2.0, 0.31666666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=57', '1'] +10:07:46 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '157'] +10:07:46 延续时间157tick--:添加音符[1.8, 0.32708333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[2.24, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=69', '6'] +10:07:46 延续时间6tick--:添加音符[1.8, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=69', '1'] +10:07:46 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=79', '154'] +10:07:46 延续时间154tick--:添加音符[3.0, 0.32083333333333336] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '200'] +10:07:46 延续时间200tick--:添加音符[2.0, 0.4166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=66', '8'] +10:07:46 延续时间8tick--:添加音符[2.67, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=59', '3'] +10:07:46 延续时间3tick--:添加音符[2.0, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=39', '1'] +10:07:46 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=42', '7'] +10:07:46 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '14'] +10:07:46 延续时间14tick--:添加音符[0.75, 0.029166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[3.0, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.7, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '3'] +10:07:46 延续时间3tick--:添加音符[1.12, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '8'] +10:07:46 延续时间8tick--:添加音符[1.5, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.8, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '8'] +10:07:46 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=56', '91'] +10:07:46 延续时间91tick--:添加音符[1.7, 0.18958333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=54', '2'] +10:07:46 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '375'] +10:07:46 延续时间375tick--:添加音符[2.67, 0.78125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=58', '5'] +10:07:46 延续时间5tick--:添加音符[2.67, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=38', '745'] +10:07:46 延续时间745tick--:添加音符[0.6, 1.5520833333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=56', '0'] +10:07:46 延续时间0tick--:添加音符[3.0, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=50', '3'] +10:07:46 延续时间3tick--:添加音符[1.8, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '5'] +10:07:46 延续时间5tick--:添加音符[2.0, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[2.24, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '2'] +10:07:46 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.0, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.7, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=50', '115'] +10:07:46 延续时间115tick--:添加音符[0.75, 0.23958333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '162'] +10:07:46 延续时间162tick--:添加音符[1.8, 0.3375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=67', '6'] +10:07:46 延续时间6tick--:添加音符[1.8, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=52', '4'] +10:07:46 延续时间4tick--:添加音符[0.84, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=61', '156'] +10:07:46 延续时间156tick--:添加音符[0.9, 0.325] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=77', '174'] +10:07:46 延续时间174tick--:添加音符[1.5, 0.3625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=61', '0'] +10:07:46 延续时间0tick--:添加音符[1.2, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=78', '154'] +10:07:46 延续时间154tick--:添加音符[1.7, 0.32083333333333336] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '151'] +10:07:46 延续时间151tick--:添加音符[1.8, 0.3145833333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=80', '4'] +10:07:46 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=79', '162'] +10:07:46 延续时间162tick--:添加音符[2.4, 0.3375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=70', '238'] +10:07:46 延续时间238tick--:添加音符[2.24, 0.49583333333333335] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=43', '3'] +10:07:46 延续时间3tick--:添加音符[0.44, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=38', '0'] +10:07:46 延续时间0tick--:添加音符[0.22, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=56', '4'] +10:07:46 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '7'] +10:07:46 延续时间7tick--:添加音符[1.8, 0.014583333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.9, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.6, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.75, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.5, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.7, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.2, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.84, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[3.0, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[2.4, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '142'] +10:07:46 延续时间142tick--:添加音符[0.22, 0.29583333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=61', '254'] +10:07:46 延续时间254tick--:添加音符[2.0, 0.5291666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=52', '79'] +10:07:46 延续时间79tick--:添加音符[1.8, 0.16458333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=48', '121'] +10:07:46 延续时间121tick--:添加音符[1.7, 0.2520833333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=40', '0'] +10:07:46 延续时间0tick--:添加音符[0.56, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=38', '1'] +10:07:46 延续时间1tick--:添加音符[1.4, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=30', '2'] +10:07:46 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '2'] +10:07:46 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[2.24, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.8, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.44, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=27', '596'] +10:07:46 延续时间596tick--:添加音符[0.37, 1.2416666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=39', '2'] +10:07:46 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=27', '3'] +10:07:46 延续时间3tick--:添加音符[0.75, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '55'] +10:07:46 延续时间55tick--:添加音符[1.7, 0.11458333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '8'] +10:07:46 延续时间8tick--:添加音符[0.84, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.4, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=50', '301'] +10:07:46 延续时间301tick--:添加音符[1.12, 0.6270833333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '326'] +10:07:46 延续时间326tick--:添加音符[1.12, 0.6791666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=57', '7'] +10:07:46 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '162'] +10:07:46 延续时间162tick--:添加音符[0.75, 0.3375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=54', '4'] +10:07:46 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=47', '1'] +10:07:46 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '164'] +10:07:46 延续时间164tick--:添加音符[1.12, 0.3416666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=62', '8'] +10:07:46 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=61', '165'] +10:07:46 延续时间165tick--:添加音符[1.5, 0.34375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '195'] +10:07:46 延续时间195tick--:添加音符[1.0, 0.40625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=45', '3'] +10:07:46 延续时间3tick--:添加音符[0.28, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=62', '1'] +10:07:46 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=48', '1'] +10:07:46 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '49'] +10:07:46 延续时间49tick--:添加音符[0.37, 0.10208333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '5'] +10:07:46 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '5'] +10:07:46 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '13'] +10:07:46 延续时间13tick--:添加音符[0.75, 0.027083333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '8'] +10:07:46 延续时间8tick--:添加音符[0.56, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=47', '195'] +10:07:46 延续时间195tick--:添加音符[1.12, 0.40625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=45', '0'] +10:07:46 延续时间0tick--:添加音符[0.84, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '335'] +10:07:46 延续时间335tick--:添加音符[1.0, 0.6979166666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.33, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=53', '4'] +10:07:46 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=29', '4'] +10:07:46 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '529'] +10:07:46 延续时间529tick--:添加音符[1.5, 1.1020833333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=60', '9'] +10:07:46 延续时间9tick--:添加音符[1.5, 0.01875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '45'] +10:07:46 延续时间45tick--:添加音符[1.12, 0.09375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=46', '5'] +10:07:46 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '64'] +10:07:46 延续时间64tick--:添加音符[1.0, 0.13333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=43', '11'] +10:07:46 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '16'] +10:07:46 延续时间16tick--:添加音符[0.84, 0.03333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '3'] +10:07:46 延续时间3tick--:添加音符[1.33, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=38', '36'] +10:07:46 延续时间36tick--:添加音符[0.75, 0.075] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=26', '1'] +10:07:46 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=32', '0'] +10:07:46 延续时间0tick--:添加音符[0.3, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=29', '1'] +10:07:46 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '6'] +10:07:46 延续时间6tick--:添加音符[0.6, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=29', '864'] +10:07:46 延续时间864tick--:添加音符[0.67, 1.8] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '158'] +10:07:46 延续时间158tick--:添加音符[0.75, 0.32916666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=26', '7'] +10:07:46 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=36', '189'] +10:07:46 延续时间189tick--:添加音符[0.9, 0.39375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '265'] +10:07:46 延续时间265tick--:添加音符[1.5, 0.5520833333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=36', '8'] +10:07:46 延续时间8tick--:添加音符[1.5, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=39', '3'] +10:07:46 延续时间3tick--:添加音符[2.24, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=41', '0'] +10:07:46 延续时间0tick--:添加音符[1.33, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '4'] +10:07:46 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1221'] +10:07:46 延续时间1221tick--:添加音符[1.5, 2.54375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=48', '10'] +10:07:46 延续时间10tick--:添加音符[1.5, 0.020833333333333332] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=71', '179'] +10:07:46 延续时间179tick--:添加音符[1.7, 0.3729166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '257'] +10:07:46 延续时间257tick--:添加音符[0.9, 0.5354166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=67', '6'] +10:07:46 延续时间6tick--:添加音符[1.8, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=49', '4'] +10:07:46 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=25', '1'] +10:07:46 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '255'] +10:07:46 延续时间255tick--:添加音符[1.0, 0.53125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.75, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.3, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.5, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.33, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '3'] +10:07:46 延续时间3tick--:添加音符[1.7, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '73'] +10:07:46 延续时间73tick--:添加音符[1.12, 0.15208333333333332] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '353'] +10:07:46 延续时间353tick--:添加音符[1.8, 0.7354166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=59', '4'] +10:07:46 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=73', '176'] +10:07:46 延续时间176tick--:添加音符[1.7, 0.36666666666666664] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=68', '172'] +10:07:46 延续时间172tick--:添加音符[1.5, 0.35833333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=68', '152'] +10:07:46 延续时间152tick--:添加音符[1.12, 0.31666666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=42', '229'] +10:07:46 延续时间229tick--:添加音符[0.28, 0.47708333333333336] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=57', '2'] +10:07:46 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=37', '6'] +10:07:46 延续时间6tick--:添加音符[0.84, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.5, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.8, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '13'] +10:07:46 延续时间13tick--:添加音符[0.9, 0.027083333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '154'] +10:07:46 延续时间154tick--:添加音符[1.33, 0.32083333333333336] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=63', '4'] +10:07:46 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '218'] +10:07:46 延续时间218tick--:添加音符[1.33, 0.45416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=51', '6'] +10:07:46 延续时间6tick--:添加音符[1.33, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '471'] +10:07:46 延续时间471tick--:添加音符[1.33, 0.98125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=53', '5'] +10:07:46 延续时间5tick--:添加音符[1.33, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '87'] +10:07:46 延续时间87tick--:添加音符[1.7, 0.18125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=42', '85'] +10:07:46 延续时间85tick--:添加音符[0.9, 0.17708333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=59', '210'] +10:07:46 延续时间210tick--:添加音符[1.5, 0.4375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=37', '0'] +10:07:46 延续时间0tick--:添加音符[0.3, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=26', '3'] +10:07:46 延续时间3tick--:添加音符[0.75, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '112'] +10:07:46 延续时间112tick--:添加音符[1.33, 0.23333333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.28, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '5'] +10:07:46 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '545'] +10:07:46 延续时间545tick--:添加音符[1.5, 1.1354166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=35', '9'] +10:07:46 延续时间9tick--:添加音符[0.37, 0.01875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=63', '1'] +10:07:46 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=51', '178'] +10:07:46 延续时间178tick--:添加音符[0.42, 0.37083333333333335] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=78', '0'] +10:07:46 延续时间0tick--:添加音符[1.33, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=72', '160'] +10:07:46 延续时间160tick--:添加音符[1.2, 0.3333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=52', '2'] +10:07:46 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=68', '160'] +10:07:46 延续时间160tick--:添加音符[1.12, 0.3333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '204'] +10:07:46 延续时间204tick--:添加音符[0.44, 0.425] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=58', '9'] +10:07:46 延续时间9tick--:添加音符[0.67, 0.01875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=49', '0'] +10:07:46 延续时间0tick--:添加音符[0.22, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=50', '2'] +10:07:46 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=47', '2'] +10:07:46 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.33, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.2, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.42, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '7'] +10:07:46 延续时间7tick--:添加音符[0.9, 0.014583333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=52', '150'] +10:07:46 延续时间150tick--:添加音符[1.12, 0.3125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '180'] +10:07:46 延续时间180tick--:添加音符[1.12, 0.375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=46', '8'] +10:07:46 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '176'] +10:07:46 延续时间176tick--:添加音符[0.67, 0.36666666666666664] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=31', '4'] +10:07:46 延续时间4tick--:添加音符[0.5, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=36', '2'] +10:07:46 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '340'] +10:07:46 延续时间340tick--:添加音符[0.56, 0.7083333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=35', '4'] +10:07:46 延续时间4tick--:添加音符[0.56, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '134'] +10:07:46 延续时间134tick--:添加音符[1.12, 0.2791666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=57', '5'] +10:07:46 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '210'] +10:07:46 延续时间210tick--:添加音符[0.44, 0.4375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=62', '4'] +10:07:46 延续时间4tick--:添加音符[1.2, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=49', '3'] +10:07:46 延续时间3tick--:添加音符[0.44, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=47', '2'] +10:07:46 延续时间2tick--:添加音符[0.25, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=47', '2'] +10:07:46 延续时间2tick--:添加音符[0.3, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '2'] +10:07:46 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.12, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.5, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=58', '28'] +10:07:46 延续时间28tick--:添加音符[1.12, 0.058333333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=70', '176'] +10:07:46 延续时间176tick--:添加音符[1.0, 0.36666666666666664] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '150'] +10:07:46 延续时间150tick--:添加音符[1.12, 0.3125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=86', '4'] +10:07:46 延续时间4tick--:添加音符[1.12, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '172'] +10:07:46 延续时间172tick--:添加音符[1.2, 0.35833333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=87', '6'] +10:07:46 延续时间6tick--:添加音符[1.2, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '155'] +10:07:46 延续时间155tick--:添加音符[1.12, 0.3229166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=74', '9'] +10:07:46 延续时间9tick--:添加音符[1.12, 0.01875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '160'] +10:07:46 延续时间160tick--:添加音符[1.2, 0.3333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=75', '5'] +10:07:46 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=79', '166'] +10:07:46 延续时间166tick--:添加音符[2.0, 0.3458333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '229'] +10:07:46 延续时间229tick--:添加音符[1.0, 0.47708333333333336] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=68', '1'] +10:07:46 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=45', '2'] +10:07:46 延续时间2tick--:添加音符[0.37, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=52', '2'] +10:07:46 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '130'] +10:07:46 延续时间130tick--:添加音符[1.2, 0.2708333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.12, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.25, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=72', '119'] +10:07:46 延续时间119tick--:添加音符[1.8, 0.24791666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '172'] +10:07:46 延续时间172tick--:添加音符[1.7, 0.35833333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=72', '11'] +10:07:46 延续时间11tick--:添加音符[1.7, 0.022916666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=51', '186'] +10:07:46 延续时间186tick--:添加音符[0.9, 0.3875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '16'] +10:07:46 延续时间16tick--:添加音符[1.0, 0.03333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=63', '228'] +10:07:46 延续时间228tick--:添加音符[1.5, 0.475] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '140'] +10:07:46 延续时间140tick--:添加音符[0.44, 0.2916666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '39'] +10:07:46 延续时间39tick--:添加音符[1.7, 0.08125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=53', '9'] +10:07:46 延续时间9tick--:添加音符[1.7, 0.01875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '206'] +10:07:46 延续时间206tick--:添加音符[1.5, 0.42916666666666664] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '7'] +10:07:46 延续时间7tick--:添加音符[1.8, 0.014583333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '4'] +10:07:46 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=53', '1'] +10:07:46 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=50', '3'] +10:07:46 延续时间3tick--:添加音符[1.8, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '2'] +10:07:46 延续时间2tick--:添加音符[0.37, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '4'] +10:07:46 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=69', '19'] +10:07:46 延续时间19tick--:添加音符[1.7, 0.03958333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=61', '1'] +10:07:46 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '149'] +10:07:46 延续时间149tick--:添加音符[1.5, 0.3104166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=74', '11'] +10:07:46 延续时间11tick--:添加音符[1.5, 0.022916666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=62', '1'] +10:07:46 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '157'] +10:07:46 延续时间157tick--:添加音符[1.7, 0.32708333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '8'] +10:07:46 延续时间8tick--:添加音符[1.33, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=68', '3'] +10:07:46 延续时间3tick--:添加音符[1.7, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=77', '1'] +10:07:46 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '195'] +10:07:46 延续时间195tick--:添加音符[1.5, 0.40625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.8, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=66', '6'] +10:07:46 延续时间6tick--:添加音符[1.8, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '1'] +10:07:46 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '362'] +10:07:46 延续时间362tick--:添加音符[1.7, 0.7541666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=59', '11'] +10:07:46 延续时间11tick--:添加音符[1.7, 0.022916666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '189'] +10:07:46 延续时间189tick--:添加音符[1.5, 0.39375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=60', '4'] +10:07:46 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '272'] +10:07:46 延续时间272tick--:添加音符[1.7, 0.5666666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=62', '8'] +10:07:46 延续时间8tick--:添加音符[1.7, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=36', '2'] +10:07:46 延续时间2tick--:添加音符[0.28, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=43', '6'] +10:07:46 延续时间6tick--:添加音符[1.12, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=26', '3'] +10:07:46 延续时间3tick--:添加音符[0.75, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '160'] +10:07:46 延续时间160tick--:添加音符[1.33, 0.3333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.5, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.8, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.9, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.3, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=30', '455'] +10:07:46 延续时间455tick--:添加音符[0.7, 0.9479166666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=24', '2'] +10:07:46 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=45', '386'] +10:07:46 延续时间386tick--:添加音符[1.5, 0.8041666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '163'] +10:07:46 延续时间163tick--:添加音符[1.7, 0.33958333333333335] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=49', '9'] +10:07:46 延续时间9tick--:添加音符[1.7, 0.01875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=37', '258'] +10:07:46 延续时间258tick--:添加音符[0.19, 0.5375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '2'] +10:07:46 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=51', '1'] +10:07:46 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=37', '3'] +10:07:46 延续时间3tick--:添加音符[1.12, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '19'] +10:07:46 延续时间19tick--:添加音符[0.28, 0.03958333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.75, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '5'] +10:07:46 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '4'] +10:07:46 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '6'] +10:07:46 延续时间6tick--:添加音符[0.7, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '8'] +10:07:46 延续时间8tick--:添加音符[0.56, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=43', '475'] +10:07:46 延续时间475tick--:添加音符[0.56, 0.9895833333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '170'] +10:07:46 延续时间170tick--:添加音符[1.8, 0.3541666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=61', '6'] +10:07:46 延续时间6tick--:添加音符[1.8, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '2'] +10:07:46 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=46', '5'] +10:07:46 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=46', '1'] +10:07:46 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '43'] +10:07:46 延续时间43tick--:添加音符[0.19, 0.08958333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=64', '82'] +10:07:46 延续时间82tick--:添加音符[1.7, 0.17083333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=57', '5'] +10:07:46 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=66', '179'] +10:07:46 延续时间179tick--:添加音符[1.5, 0.3729166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=51', '4'] +10:07:46 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '137'] +10:07:46 延续时间137tick--:添加音符[1.12, 0.28541666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=58', '8'] +10:07:46 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '207'] +10:07:46 延续时间207tick--:添加音符[0.84, 0.43125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=47', '4'] +10:07:46 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=59', '1'] +10:07:46 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=49', '5'] +10:07:46 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=38', '2'] +10:07:46 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '30'] +10:07:46 延续时间30tick--:添加音符[1.5, 0.0625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.7, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.9, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.12, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.8, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '238'] +10:07:46 延续时间238tick--:添加音符[1.33, 0.49583333333333335] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=57', '12'] +10:07:46 延续时间12tick--:添加音符[1.33, 0.025] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '157'] +10:07:46 延续时间157tick--:添加音符[1.33, 0.32708333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=65', '12'] +10:07:46 延续时间12tick--:添加音符[1.33, 0.025] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=52', '0'] +10:07:46 延续时间0tick--:添加音符[0.67, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '165'] +10:07:46 延续时间165tick--:添加音符[0.84, 0.34375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=47', '5'] +10:07:46 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '348'] +10:07:46 延续时间348tick--:添加音符[1.33, 0.725] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=56', '8'] +10:07:46 延续时间8tick--:添加音符[1.33, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=43', '158'] +10:07:46 延续时间158tick--:添加音符[0.9, 0.32916666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=42', '243'] +10:07:46 延续时间243tick--:添加音符[0.15, 0.50625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=57', '3'] +10:07:46 延续时间3tick--:添加音符[1.5, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=37', '7'] +10:07:46 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '42'] +10:07:46 延续时间42tick--:添加音符[0.28, 0.0875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '12'] +10:07:46 延续时间12tick--:添加音符[1.0, 0.025] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.67, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.33, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '2'] +10:07:46 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=53', '359'] +10:07:46 延续时间359tick--:添加音符[0.44, 0.7479166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '86'] +10:07:46 延续时间86tick--:添加音符[0.75, 0.17916666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=60', '8'] +10:07:46 延续时间8tick--:添加音符[0.75, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '23'] +10:07:46 延续时间23tick--:添加音符[0.9, 0.04791666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=68', '11'] +10:07:46 延续时间11tick--:添加音符[0.9, 0.022916666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=50', '24'] +10:07:46 延续时间24tick--:添加音符[0.6, 0.05] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '19'] +10:07:46 延续时间19tick--:添加音符[1.5, 0.03958333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=81', '5'] +10:07:46 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=80', '98'] +10:07:46 延续时间98tick--:添加音符[1.33, 0.20416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=75', '167'] +10:07:46 延续时间167tick--:添加音符[1.2, 0.34791666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=55', '3'] +10:07:46 延续时间3tick--:添加音符[0.67, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=81', '149'] +10:07:46 延续时间149tick--:添加音符[1.12, 0.3104166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '182'] +10:07:46 延续时间182tick--:添加音符[0.15, 0.37916666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '8'] +10:07:46 延续时间8tick--:添加音符[0.44, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.67, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.12, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=66', '6'] +10:07:46 延续时间6tick--:添加音符[1.12, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=56', '3'] +10:07:46 延续时间3tick--:添加音符[0.67, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=47', '0'] +10:07:46 延续时间0tick--:添加音符[0.44, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=49', '2'] +10:07:46 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=45', '1'] +10:07:46 延续时间1tick--:添加音符[0.33, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=48', '1'] +10:07:46 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=42', '1'] +10:07:46 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.33, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.5, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '3'] +10:07:46 延续时间3tick--:添加音符[1.2, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '13'] +10:07:46 延续时间13tick--:添加音符[0.75, 0.027083333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '245'] +10:07:46 延续时间245tick--:添加音符[1.12, 0.5104166666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=69', '8'] +10:07:46 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '161'] +10:07:46 延续时间161tick--:添加音符[0.5, 0.33541666666666664] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.12, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=57', '8'] +10:07:46 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=43', '3'] +10:07:46 延续时间3tick--:添加音符[0.5, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '158'] +10:07:46 延续时间158tick--:添加音符[0.67, 0.32916666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=61', '9'] +10:07:46 延续时间9tick--:添加音符[0.67, 0.01875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '183'] +10:07:46 延续时间183tick--:添加音符[0.56, 0.38125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=46', '12'] +10:07:46 延续时间12tick--:添加音符[0.56, 0.025] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '311'] +10:07:46 延续时间311tick--:添加音符[1.12, 0.6479166666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=62', '11'] +10:07:46 延续时间11tick--:添加音符[1.12, 0.022916666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '166'] +10:07:46 延续时间166tick--:添加音符[0.9, 0.3458333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=60', '7'] +10:07:46 延续时间7tick--:添加音符[1.2, 0.014583333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.44, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=48', '4'] +10:07:46 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=43', '0'] +10:07:46 延续时间0tick--:添加音符[0.6, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=50', '3'] +10:07:46 延续时间3tick--:添加音符[0.44, 0.00625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '5'] +10:07:46 延续时间5tick--:添加音符[0.67, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.12, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.56, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '19'] +10:07:46 延续时间19tick--:添加音符[0.5, 0.03958333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '15'] +10:07:46 延续时间15tick--:添加音符[0.33, 0.03125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=50', '112'] +10:07:46 延续时间112tick--:添加音符[1.12, 0.23333333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=59', '180'] +10:07:46 延续时间180tick--:添加音符[1.0, 0.375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '130'] +10:07:46 延续时间130tick--:添加音符[1.12, 0.2708333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=70', '11'] +10:07:46 延续时间11tick--:添加音符[0.5, 0.022916666666666665] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=71', '0'] +10:07:46 延续时间0tick--:添加音符[1.12, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '174'] +10:07:46 延续时间174tick--:添加音符[1.2, 0.3625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=81', '10'] +10:07:46 延续时间10tick--:添加音符[1.2, 0.020833333333333332] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=60', '1'] +10:07:46 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '150'] +10:07:46 延续时间150tick--:添加音符[0.6, 0.3125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.12, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=62', '6'] +10:07:46 延续时间6tick--:添加音符[0.6, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=85', '2'] +10:07:46 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '161'] +10:07:46 延续时间161tick--:添加音符[0.9, 0.33541666666666664] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.2, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=78', '5'] +10:07:46 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=55', '0'] +10:07:46 延续时间0tick--:添加音符[0.9, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=85', '160'] +10:07:46 延续时间160tick--:添加音符[2.0, 0.3333333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=47', '189'] +10:07:46 延续时间189tick--:添加音符[0.19, 0.39375] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '53'] +10:07:46 延续时间53tick--:添加音符[1.0, 0.11041666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=76', '8'] +10:07:46 延续时间8tick--:添加音符[1.7, 0.016666666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=44', '2'] +10:07:46 延续时间2tick--:添加音符[0.37, 0.004166666666666667] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=59', '1'] +10:07:46 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '52'] +10:07:46 延续时间52tick--:添加音符[0.44, 0.10833333333333334] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.9, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.2, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.12, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +10:07:46 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[0.6, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[2.0, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=73', '233'] +10:07:46 延续时间233tick--:添加音符[1.8, 0.48541666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=59', '1'] +10:07:46 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '158'] +10:07:46 延续时间158tick--:添加音符[1.0, 0.32916666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:46 延续时间0tick--:添加音符[1.7, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=75', '6'] +10:07:46 延续时间6tick--:添加音符[1.7, 0.0125] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=59', '0'] +10:07:46 延续时间0tick--:添加音符[0.56, 1.0] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=67', '1'] +10:07:46 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '147'] +10:07:46 延续时间147tick--:添加音符[0.37, 0.30625] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=59', '10'] +10:07:46 延续时间10tick--:添加音符[0.37, 0.020833333333333332] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=67', '1'] +10:07:46 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=83', '166'] +10:07:46 延续时间166tick--:添加音符[0.75, 0.3458333333333333] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '153'] +10:07:46 延续时间153tick--:添加音符[0.56, 0.31875] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=76', '5'] +10:07:46 延续时间5tick--:添加音符[0.56, 0.010416666666666666] +10:07:46 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '133'] +10:07:46 延续时间133tick--:添加音符[1.0, 0.27708333333333335] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=84', '9'] +10:07:47 延续时间9tick--:添加音符[1.0, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=57', '99'] +10:07:47 延续时间99tick--:添加音符[0.15, 0.20625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=94', '104'] +10:07:47 延续时间104tick--:添加音符[1.5, 0.21666666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=75', '0'] +10:07:47 延续时间0tick--:添加音符[0.3, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '14'] +10:07:47 延续时间14tick--:添加音符[0.37, 0.029166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +10:07:47 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '3'] +10:07:47 延续时间3tick--:添加音符[0.19, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '208'] +10:07:47 延续时间208tick--:添加音符[0.3, 0.43333333333333335] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=72', '11'] +10:07:47 延续时间11tick--:添加音符[0.3, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=78', '0'] +10:07:47 延续时间0tick--:添加音符[0.44, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=80', '169'] +10:07:47 延续时间169tick--:添加音符[0.6, 0.35208333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=105', '161'] +10:07:47 延续时间161tick--:添加音符[2.0, 0.33541666666666664] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '141'] +10:07:47 延续时间141tick--:添加音符[0.3, 0.29375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=79', '6'] +10:07:47 延续时间6tick--:添加音符[0.3, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '163'] +10:07:47 延续时间163tick--:添加音符[1.5, 0.33958333333333335] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=97', '10'] +10:07:47 延续时间10tick--:添加音符[1.5, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '159'] +10:07:47 延续时间159tick--:添加音符[0.15, 0.33125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=70', '7'] +10:07:47 延续时间7tick--:添加音符[0.15, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[0.3, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '204'] +10:07:47 延续时间204tick--:添加音符[1.0, 0.425] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=85', '5'] +10:07:47 延续时间5tick--:添加音符[0.75, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=73', '2'] +10:07:47 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=88', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '2'] +10:07:47 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=74', '2'] +10:07:47 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=74', '0'] +10:07:47 延续时间0tick--:添加音符[0.28, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '11'] +10:07:47 延续时间11tick--:添加音符[0.6, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '39'] +10:07:47 延续时间39tick--:添加音符[0.15, 0.08125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[0.44, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=95', '51'] +10:07:47 延续时间51tick--:添加音符[1.7, 0.10625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '88'] +10:07:47 延续时间88tick--:添加音符[0.14, 0.18333333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '53'] +10:07:47 延续时间53tick--:添加音符[0.28, 0.11041666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=65', '5'] +10:07:47 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=58', '3'] +10:07:47 延续时间3tick--:添加音符[0.14, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=85', '139'] +10:07:47 延续时间139tick--:添加音符[0.42, 0.28958333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '45'] +10:07:47 延续时间45tick--:添加音符[0.14, 0.09375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '131'] +10:07:47 延续时间131tick--:添加音符[1.0, 0.27291666666666664] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=93', '1'] +10:07:47 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=73', '1'] +10:07:47 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=58', '3'] +10:07:47 延续时间3tick--:添加音符[1.0, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '71'] +10:07:47 延续时间71tick--:添加音符[0.75, 0.14791666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '23'] +10:07:47 延续时间23tick--:添加音符[1.5, 0.04791666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=87', '182'] +10:07:47 延续时间182tick--:添加音符[0.42, 0.37916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '448'] +10:07:47 延续时间448tick--:添加音符[1.12, 0.9333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=87', '10'] +10:07:47 延续时间10tick--:添加音符[0.75, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=80', '1'] +10:07:47 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=82', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=75', '1'] +10:07:47 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=57', '2'] +10:07:47 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[0.7, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '3'] +10:07:47 延续时间3tick--:添加音符[0.42, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '7'] +10:07:47 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '77'] +10:07:47 延续时间77tick--:添加音符[0.19, 0.16041666666666668] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '169'] +10:07:47 延续时间169tick--:添加音符[1.12, 0.35208333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=90', '4'] +10:07:47 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '1'] +10:07:47 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=78', '2'] +10:07:47 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '108'] +10:07:47 延续时间108tick--:添加音符[0.37, 0.225] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=70', '4'] +10:07:47 延续时间4tick--:添加音符[0.37, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=75', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '165'] +10:07:47 延续时间165tick--:添加音符[0.75, 0.34375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=90', '4'] +10:07:47 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=87', '1'] +10:07:47 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=73', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=83', '152'] +10:07:47 延续时间152tick--:添加音符[2.0, 0.31666666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=81', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '164'] +10:07:47 延续时间164tick--:添加音符[0.9, 0.3416666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=75', '5'] +10:07:47 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=86', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=95', '160'] +10:07:47 延续时间160tick--:添加音符[3.0, 0.3333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '188'] +10:07:47 延续时间188tick--:添加音符[1.7, 0.39166666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=86', '4'] +10:07:47 延续时间4tick--:添加音符[2.67, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=67', '0'] +10:07:47 延续时间0tick--:添加音符[0.28, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=83', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '39'] +10:07:47 延续时间39tick--:添加音符[0.9, 0.08125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.37, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=90', '234'] +10:07:47 延续时间234tick--:添加音符[2.24, 0.4875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=88', '1'] +10:07:47 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=82', '145'] +10:07:47 延续时间145tick--:添加音符[0.67, 0.3020833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=83', '1'] +10:07:47 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=71', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '102'] +10:07:47 延续时间102tick--:添加音符[1.33, 0.2125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=71', '5'] +10:07:47 延续时间5tick--:添加音符[1.33, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '26'] +10:07:47 延续时间26tick--:添加音符[1.7, 0.05416666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=76', '10'] +10:07:47 延续时间10tick--:添加音符[1.7, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '29'] +10:07:47 延续时间29tick--:添加音符[2.67, 0.06041666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=95', '7'] +10:07:47 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=86', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '130'] +10:07:47 延续时间130tick--:添加音符[0.84, 0.2708333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=78', '7'] +10:07:47 延续时间7tick--:添加音符[0.84, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '185'] +10:07:47 延续时间185tick--:添加音符[0.67, 0.3854166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=58', '6'] +10:07:47 延续时间6tick--:添加音符[0.67, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=73', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=68', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=65', '150'] +10:07:47 延续时间150tick--:添加音符[0.15, 0.3125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=83', '2'] +10:07:47 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '180'] +10:07:47 延续时间180tick--:添加音符[0.15, 0.375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=66', '9'] +10:07:47 延续时间9tick--:添加音符[0.15, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=89', '0'] +10:07:47 延续时间0tick--:添加音符[3.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=70', '0'] +10:07:47 延续时间0tick--:添加音符[0.3, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=81', '1'] +10:07:47 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '199'] +10:07:47 延续时间199tick--:添加音符[1.5, 0.41458333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=70', '9'] +10:07:47 延续时间9tick--:添加音符[1.5, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=81', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=88', '2'] +10:07:47 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '135'] +10:07:47 延续时间135tick--:添加音符[3.0, 0.28125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[0.3, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=78', '10'] +10:07:47 延续时间10tick--:添加音符[0.3, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=72', '0'] +10:07:47 延续时间0tick--:添加音符[0.44, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '151'] +10:07:47 延续时间151tick--:添加音符[0.9, 0.3145833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=91', '8'] +10:07:47 延续时间8tick--:添加音符[1.5, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=85', '1'] +10:07:47 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=83', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=79', '1'] +10:07:47 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=95', '101'] +10:07:47 延续时间101tick--:添加音符[1.7, 0.21041666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=85', '1'] +10:07:47 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '151'] +10:07:47 延续时间151tick--:添加音符[0.9, 0.3145833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=76', '8'] +10:07:47 延续时间8tick--:添加音符[0.9, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '1'] +10:07:47 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '145'] +10:07:47 延续时间145tick--:添加音符[1.5, 0.3020833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=67', '5'] +10:07:47 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=90', '0'] +10:07:47 延续时间0tick--:添加音符[2.4, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '2'] +10:07:47 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '70'] +10:07:47 延续时间70tick--:添加音符[0.15, 0.14583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=58', '77'] +10:07:47 延续时间77tick--:添加音符[0.22, 0.16041666666666668] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '30'] +10:07:47 延续时间30tick--:添加音符[0.44, 0.0625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=69', '0'] +10:07:47 延续时间0tick--:添加音符[0.44, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.84, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.2, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.4, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=74', '2'] +10:07:47 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=81', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=92', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=72', '2'] +10:07:47 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '12'] +10:07:47 延续时间12tick--:添加音符[0.3, 0.025] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '85'] +10:07:47 延续时间85tick--:添加音符[0.44, 0.17708333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=57', '10'] +10:07:47 延续时间10tick--:添加音符[0.44, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=79', '148'] +10:07:47 延续时间148tick--:添加音符[0.67, 0.30833333333333335] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=87', '1'] +10:07:47 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=84', '2'] +10:07:47 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '138'] +10:07:47 延续时间138tick--:添加音符[1.8, 0.2875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '4'] +10:07:47 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=78', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '180'] +10:07:47 延续时间180tick--:添加音符[1.0, 0.375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=92', '5'] +10:07:47 延续时间5tick--:添加音符[1.7, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=85', '1'] +10:07:47 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=83', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '5'] +10:07:47 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.44, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '19'] +10:07:47 延续时间19tick--:添加音符[0.22, 0.03958333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=65', '59'] +10:07:47 延续时间59tick--:添加音符[0.28, 0.12291666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=77', '180'] +10:07:47 延续时间180tick--:添加音符[0.5, 0.375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=79', '1'] +10:07:47 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=71', '211'] +10:07:47 延续时间211tick--:添加音符[0.125, 0.4395833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '145'] +10:07:47 延续时间145tick--:添加音符[1.8, 0.3020833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=63', '0'] +10:07:47 延续时间0tick--:添加音符[0.25, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=74', '1'] +10:07:47 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=75', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=79', '5'] +10:07:47 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.28, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '17'] +10:07:47 延续时间17tick--:添加音符[1.0, 0.035416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '177'] +10:07:47 延续时间177tick--:添加音符[1.2, 0.36875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=83', '7'] +10:07:47 延续时间7tick--:添加音符[1.2, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=84', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=72', '150'] +10:07:47 延续时间150tick--:添加音符[0.75, 0.3125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=80', '2'] +10:07:47 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=87', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=77', '1'] +10:07:47 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '170'] +10:07:47 延续时间170tick--:添加音符[1.2, 0.3541666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=74', '5'] +10:07:47 延续时间5tick--:添加音符[0.6, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=84', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=75', '1'] +10:07:47 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '148'] +10:07:47 延续时间148tick--:添加音符[0.9, 0.30833333333333335] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.2, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=88', '5'] +10:07:47 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=85', '1'] +10:07:47 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=93', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=78', '1'] +10:07:47 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '147'] +10:07:47 延续时间147tick--:添加音符[0.75, 0.30625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.2, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=88', '4'] +10:07:47 延续时间4tick--:添加音符[1.2, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=87', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=104', '151'] +10:07:47 延续时间151tick--:添加音符[2.4, 0.3145833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '37'] +10:07:47 延续时间37tick--:添加音符[0.125, 0.07708333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=54', '124'] +10:07:47 延续时间124tick--:添加音符[0.4, 0.25833333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '29'] +10:07:47 延续时间29tick--:添加音符[1.33, 0.06041666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=100', '3'] +10:07:47 延续时间3tick--:添加音符[2.24, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=95', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=84', '0'] +10:07:47 延续时间0tick--:添加音符[0.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=83', '1'] +10:07:47 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '5'] +10:07:47 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.6, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.2, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.4, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[0.25, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '131'] +10:07:47 延续时间131tick--:添加音符[1.12, 0.27291666666666664] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=86', '6'] +10:07:47 延续时间6tick--:添加音符[2.24, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=75', '2'] +10:07:47 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=66', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=83', '112'] +10:07:47 延续时间112tick--:添加音符[0.6, 0.23333333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '72'] +10:07:47 延续时间72tick--:添加音符[1.8, 0.15] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '5'] +10:07:47 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=94', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '202'] +10:07:47 延续时间202tick--:添加音符[0.4, 0.42083333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=95', '6'] +10:07:47 延续时间6tick--:添加音符[2.0, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=88', '3'] +10:07:47 延续时间3tick--:添加音符[1.2, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=84', '1'] +10:07:47 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=79', '0'] +10:07:47 延续时间0tick--:添加音符[0.4, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=76', '2'] +10:07:47 延续时间2tick--:添加音符[0.2, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '134'] +10:07:47 延续时间134tick--:添加音符[0.2, 0.2791666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=83', '11'] +10:07:47 延续时间11tick--:添加音符[0.2, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '143'] +10:07:47 延续时间143tick--:添加音符[0.6, 0.29791666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=90', '6'] +10:07:47 延续时间6tick--:添加音符[0.6, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=96', '2'] +10:07:47 延续时间2tick--:添加音符[0.8, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=92', '0'] +10:07:47 延续时间0tick--:添加音符[0.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=85', '172'] +10:07:47 延续时间172tick--:添加音符[0.14, 0.35833333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '150'] +10:07:47 延续时间150tick--:添加音符[0.14, 0.3125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=101', '4'] +10:07:47 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=107', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=104', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=99', '1'] +10:07:47 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=103', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=87', '1'] +10:07:47 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '6'] +10:07:47 延续时间6tick--:添加音符[0.4, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.2, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.6, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.6, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '3'] +10:07:47 延续时间3tick--:添加音符[0.2, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=89', '280'] +10:07:47 延续时间280tick--:添加音符[0.42, 0.5833333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=95', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=84', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '69', 'velocity=80', '6'] +10:07:47 延续时间6tick--:添加音符[1.25, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '69', 'velocity=0', '5'] +10:07:47 延续时间5tick--:添加音符[1.25, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '100'] +10:07:47 延续时间100tick--:添加音符[0.28, 0.20833333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=77', '7'] +10:07:47 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '177'] +10:07:47 延续时间177tick--:添加音符[0.75, 0.36875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=102', '4'] +10:07:47 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=103', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '1'] +10:07:47 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=99', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=83', '151'] +10:07:47 延续时间151tick--:添加音符[0.56, 0.3145833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '143'] +10:07:47 延续时间143tick--:添加音符[0.75, 0.29791666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=100', '4'] +10:07:47 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=107', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '141'] +10:07:47 延续时间141tick--:添加音符[0.42, 0.29375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=68', '9'] +10:07:47 延续时间9tick--:添加音符[0.42, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '175'] +10:07:47 延续时间175tick--:添加音符[0.14, 0.3645833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=80', '11'] +10:07:47 延续时间11tick--:添加音符[0.14, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=88', '0'] +10:07:47 延续时间0tick--:添加音符[0.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=99', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '7'] +10:07:47 延续时间7tick--:添加音符[0.56, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.42, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '11'] +10:07:47 延续时间11tick--:添加音符[0.75, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '115'] +10:07:47 延续时间115tick--:添加音符[0.14, 0.23958333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=74', '4'] +10:07:47 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=67', '2'] +10:07:47 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '125'] +10:07:47 延续时间125tick--:添加音符[0.7, 0.2604166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=96', '5'] +10:07:47 延续时间5tick--:添加音符[0.7, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=74', '1'] +10:07:47 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '2'] +10:07:47 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '130'] +10:07:47 延续时间130tick--:添加音符[0.14, 0.2708333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.28, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=77', '5'] +10:07:47 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=68', '4'] +10:07:47 延续时间4tick--:添加音符[0.14, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '167'] +10:07:47 延续时间167tick--:添加音符[0.7, 0.34791666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=93', '11'] +10:07:47 延续时间11tick--:添加音符[0.42, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=75', '0'] +10:07:47 延续时间0tick--:添加音符[0.21, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=84', '0'] +10:07:47 延续时间0tick--:添加音符[0.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=78', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[0.21, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '184'] +10:07:47 延续时间184tick--:添加音符[0.28, 0.38333333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[0.7, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=64', '3'] +10:07:47 延续时间3tick--:添加音符[0.28, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=86', '1'] +10:07:47 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=67', '1'] +10:07:47 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=56', '165'] +10:07:47 延续时间165tick--:添加音符[0.19, 0.34375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=62', '0'] +10:07:47 延续时间0tick--:添加音符[0.094, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '7'] +10:07:47 延续时间7tick--:添加音符[0.094, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '176'] +10:07:47 延续时间176tick--:添加音符[0.19, 0.36666666666666664] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=95', '5'] +10:07:47 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=97', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=100', '1'] +10:07:47 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=88', '2'] +10:07:47 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '5'] +10:07:47 延续时间5tick--:添加音符[0.56, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.28, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.42, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '3'] +10:07:47 延续时间3tick--:添加音符[1.0, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '215'] +10:07:47 延续时间215tick--:添加音符[1.8, 0.4479166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=89', '7'] +10:07:47 延续时间7tick--:添加音符[1.8, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=97', '2'] +10:07:47 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=81', '147'] +10:07:47 延续时间147tick--:添加音符[0.37, 0.30625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=78', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '159'] +10:07:47 延续时间159tick--:添加音符[0.37, 0.33125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '10'] +10:07:47 延续时间10tick--:添加音符[2.24, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '1'] +10:07:47 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=80', '1'] +10:07:47 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '143'] +10:07:47 延续时间143tick--:添加音符[2.0, 0.29791666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=91', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=81', '137'] +10:07:47 延续时间137tick--:添加音符[0.9, 0.28541666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '22'] +10:07:47 延续时间22tick--:添加音符[2.24, 0.04583333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=88', '5'] +10:07:47 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=97', '147'] +10:07:47 延续时间147tick--:添加音符[3.0, 0.30625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=54', '30'] +10:07:47 延续时间30tick--:添加音符[2.67, 0.0625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '10'] +10:07:47 延续时间10tick--:添加音符[2.67, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=71', '59'] +10:07:47 延续时间59tick--:添加音符[0.14, 0.12291666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '95'] +10:07:47 延续时间95tick--:添加音符[1.7, 0.19791666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=78', '2'] +10:07:47 延续时间2tick--:添加音符[0.28, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=88', '0'] +10:07:47 延续时间0tick--:添加音符[2.67, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=86', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '3'] +10:07:47 延续时间3tick--:添加音符[0.37, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '130'] +10:07:47 延续时间130tick--:添加音符[0.14, 0.2708333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=91', '119'] +10:07:47 延续时间119tick--:添加音符[2.24, 0.24791666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=96', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=72', '134'] +10:07:47 延续时间134tick--:添加音符[0.56, 0.2791666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=79', '1'] +10:07:47 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=84', '2'] +10:07:47 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '59'] +10:07:47 延续时间59tick--:添加音符[1.33, 0.12291666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=77', '10'] +10:07:47 延续时间10tick--:添加音符[1.33, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '36'] +10:07:47 延续时间36tick--:添加音符[1.7, 0.075] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=76', '10'] +10:07:47 延续时间10tick--:添加音符[1.7, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '52'] +10:07:47 延续时间52tick--:添加音符[2.67, 0.10833333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=95', '7'] +10:07:47 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=90', '2'] +10:07:47 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '160'] +10:07:47 延续时间160tick--:添加音符[0.84, 0.3333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=81', '10'] +10:07:47 延续时间10tick--:添加音符[0.84, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=91', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '143'] +10:07:47 延续时间143tick--:添加音符[0.67, 0.29791666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=75', '2'] +10:07:47 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=86', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=65', '2'] +10:07:47 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '133'] +10:07:47 延续时间133tick--:添加音符[1.33, 0.27708333333333335] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=78', '10'] +10:07:47 延续时间10tick--:添加音符[1.33, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=73', '55'] +10:07:47 延续时间55tick--:添加音符[0.15, 0.11458333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=82', '130'] +10:07:47 延续时间130tick--:添加音符[0.3, 0.2708333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=92', '1'] +10:07:47 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '3'] +10:07:47 延续时间3tick--:添加音符[1.33, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.67, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '12'] +10:07:47 延续时间12tick--:添加音符[0.67, 0.025] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.84, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '69'] +10:07:47 延续时间69tick--:添加音符[2.24, 0.14375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '169'] +10:07:47 延续时间169tick--:添加音符[1.5, 0.35208333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=80', '10'] +10:07:47 延续时间10tick--:添加音符[1.5, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=90', '1'] +10:07:47 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=83', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '128'] +10:07:47 延续时间128tick--:添加音符[0.3, 0.26666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=77', '7'] +10:07:47 延续时间7tick--:添加音符[0.3, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=62', '66'] +10:07:47 延续时间66tick--:添加音符[0.44, 0.1375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '103'] +10:07:47 延续时间103tick--:添加音符[0.9, 0.21458333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=73', '11'] +10:07:47 延续时间11tick--:添加音符[0.75, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=83', '0'] +10:07:47 延续时间0tick--:添加音符[0.6, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=89', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=73', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=101', '173'] +10:07:47 延续时间173tick--:添加音符[1.7, 0.36041666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=85', '2'] +10:07:47 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '144'] +10:07:47 延续时间144tick--:添加音符[0.44, 0.3] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '4'] +10:07:47 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=67', '1'] +10:07:47 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=95', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=83', '139'] +10:07:47 延续时间139tick--:添加音符[2.4, 0.28958333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=62', '154'] +10:07:47 延续时间154tick--:添加音符[0.22, 0.32083333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '33'] +10:07:47 延续时间33tick--:添加音符[1.8, 0.06875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=87', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.6, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.4, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.84, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=77', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=73', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[0.15, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[3.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=66', '102'] +10:07:47 延续时间102tick--:添加音符[0.44, 0.2125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=81', '146'] +10:07:47 延续时间146tick--:添加音符[0.67, 0.30416666666666664] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=87', '0'] +10:07:47 延续时间0tick--:添加音符[2.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=89', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '135'] +10:07:47 延续时间135tick--:添加音符[1.8, 0.28125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=87', '5'] +10:07:47 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=86', '1'] +10:07:47 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=52', '122'] +10:07:47 延续时间122tick--:添加音符[0.17, 0.25416666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '64'] +10:07:47 延续时间64tick--:添加音符[1.0, 0.13333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=85', '7'] +10:07:47 延续时间7tick--:添加音符[0.84, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=84', '2'] +10:07:47 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=91', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=73', '1'] +10:07:47 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=73', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '16'] +10:07:47 延续时间16tick--:添加音符[1.12, 0.03333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.22, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.44, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.17, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '23'] +10:07:47 延续时间23tick--:添加音符[0.14, 0.04791666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=79', '37'] +10:07:47 延续时间37tick--:添加音符[0.28, 0.07708333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '155'] +10:07:47 延续时间155tick--:添加音符[0.84, 0.3229166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=90', '5'] +10:07:47 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=82', '2'] +10:07:47 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=83', '151'] +10:07:47 延续时间151tick--:添加音符[0.9, 0.3145833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=62', '239'] +10:07:47 延续时间239tick--:添加音符[0.25, 0.4979166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '2'] +10:07:47 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=79', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.28, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.84, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '7'] +10:07:47 延续时间7tick--:添加音符[1.33, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '138'] +10:07:47 延续时间138tick--:添加音符[1.5, 0.2875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=74', '11'] +10:07:47 延续时间11tick--:添加音符[1.5, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=55', '1'] +10:07:47 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=65', '131'] +10:07:47 延续时间131tick--:添加音符[0.5, 0.27291666666666664] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=79', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=78', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '179'] +10:07:47 延续时间179tick--:添加音符[1.2, 0.3729166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=66', '4'] +10:07:47 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=75', '1'] +10:07:47 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=75', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=73', '0'] +10:07:47 延续时间0tick--:添加音符[1.2, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '149'] +10:07:47 延续时间149tick--:添加音符[1.2, 0.3104166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[1.5, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=78', '2'] +10:07:47 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=70', '1'] +10:07:47 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '1'] +10:07:47 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=64', '5'] +10:07:47 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '137'] +10:07:47 延续时间137tick--:添加音符[1.2, 0.28541666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=81', '5'] +10:07:47 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=80', '0'] +10:07:47 延续时间0tick--:添加音符[1.2, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=71', '1'] +10:07:47 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=58', '9'] +10:07:47 延续时间9tick--:添加音符[0.5, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=89', '121'] +10:07:47 延续时间121tick--:添加音符[2.4, 0.2520833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '253'] +10:07:47 延续时间253tick--:添加音符[1.33, 0.5270833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=77', '5'] +10:07:47 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=69', '2'] +10:07:47 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=72', '1'] +10:07:47 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=52', '4'] +10:07:47 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=50', '5'] +10:07:47 延续时间5tick--:添加音符[0.4, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[0.25, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '20'] +10:07:47 延续时间20tick--:添加音符[1.5, 0.041666666666666664] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '154'] +10:07:47 延续时间154tick--:添加音符[0.6, 0.32083333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=69', '0'] +10:07:47 延续时间0tick--:添加音符[0.3, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=64', '5'] +10:07:47 延续时间5tick--:添加音符[0.6, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=98', '4'] +10:07:47 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=77', '1'] +10:07:47 延续时间1tick--:添加音符[0.8, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=63', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=89', '1'] +10:07:47 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '196'] +10:07:47 延续时间196tick--:添加音符[1.8, 0.4083333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=101', '12'] +10:07:47 延续时间12tick--:添加音符[1.8, 0.025] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=92', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '180'] +10:07:47 延续时间180tick--:添加音符[0.4, 0.375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=99', '9'] +10:07:47 延续时间9tick--:添加音符[1.2, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=97', '1'] +10:07:47 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=91', '1'] +10:07:47 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=100', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=87', '1'] +10:07:47 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=80', '1'] +10:07:47 延续时间1tick--:添加音符[0.2, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '148'] +10:07:47 延续时间148tick--:添加音符[0.2, 0.30833333333333335] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=76', '9'] +10:07:47 延续时间9tick--:添加音符[0.2, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '121'] +10:07:47 延续时间121tick--:添加音符[0.6, 0.2520833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=95', '8'] +10:07:47 延续时间8tick--:添加音符[0.6, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=99', '2'] +10:07:47 延续时间2tick--:添加音符[0.8, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=77', '1'] +10:07:47 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '122'] +10:07:47 延续时间122tick--:添加音符[0.14, 0.25416666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '198'] +10:07:47 延续时间198tick--:添加音符[0.14, 0.4125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '3'] +10:07:47 延续时间3tick--:添加音符[0.28, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=88', '1'] +10:07:47 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=113', '3'] +10:07:47 延续时间3tick--:添加音符[2.24, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=114', '1'] +10:07:47 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=106', '3'] +10:07:47 延续时间3tick--:添加音符[1.7, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=105', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '54'] +10:07:47 延续时间54tick--:添加音符[0.9, 0.1125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.33, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.2, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.3, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '3'] +10:07:47 延续时间3tick--:添加音符[0.5, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[0.56, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '185'] +10:07:47 延续时间185tick--:添加音符[1.12, 0.3854166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '11'] +10:07:47 延续时间11tick--:添加音符[1.12, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=84', '1'] +10:07:47 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=88', '1'] +10:07:47 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=85', '153'] +10:07:47 延续时间153tick--:添加音符[0.42, 0.31875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '141'] +10:07:47 延续时间141tick--:添加音符[0.28, 0.29375] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=92', '6'] +10:07:47 延续时间6tick--:添加音符[0.28, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=104', '1'] +10:07:47 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=105', '0'] +10:07:47 延续时间0tick--:添加音符[1.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=93', '4'] +10:07:47 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '33', 'velocity=81', '127'] +10:07:47 延续时间127tick--:添加音符[0.16, 0.26458333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '177'] +10:07:47 延续时间177tick--:添加音符[0.14, 0.36875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.28, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=109', '3'] +10:07:47 延续时间3tick--:添加音符[0.7, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=99', '1'] +10:07:47 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=105', '1'] +10:07:47 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=87', '0'] +10:07:47 延续时间0tick--:添加音符[0.14, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=89', '3'] +10:07:47 延续时间3tick--:添加音符[1.12, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '58'] +10:07:47 延续时间58tick--:添加音符[0.42, 0.12083333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '33', 'velocity=0', '11'] +10:07:47 延续时间11tick--:添加音符[0.16, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.24, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '169'] +10:07:47 延续时间169tick--:添加音符[0.7, 0.35208333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=82', '3'] +10:07:47 延续时间3tick--:添加音符[0.7, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=61', '3'] +10:07:47 延续时间3tick--:添加音符[1.12, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=64', '3'] +10:07:47 延续时间3tick--:添加音符[1.0, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '22'] +10:07:47 延续时间22tick--:添加音符[0.14, 0.04583333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '138'] +10:07:47 延续时间138tick--:添加音符[0.28, 0.2875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=74', '4'] +10:07:47 延续时间4tick--:添加音符[0.42, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=72', '0'] +10:07:47 延续时间0tick--:添加音符[0.28, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '134'] +10:07:47 延续时间134tick--:添加音符[0.7, 0.2791666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=95', '6'] +10:07:47 延续时间6tick--:添加音符[0.7, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '0'] +10:07:47 延续时间0tick--:添加音符[1.12, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=85', '2'] +10:07:47 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=75', '190'] +10:07:47 延续时间190tick--:添加音符[0.56, 0.3958333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=102', '151'] +10:07:47 延续时间151tick--:添加音符[1.4, 0.3145833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '12'] +10:07:47 延续时间12tick--:添加音符[1.0, 0.025] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=57', '11'] +10:07:47 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '127'] +10:07:47 延续时间127tick--:添加音符[0.42, 0.26458333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=70', '9'] +10:07:47 延续时间9tick--:添加音符[0.42, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '204'] +10:07:47 延续时间204tick--:添加音符[1.5, 0.425] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=46', '5'] +10:07:47 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=47', '346'] +10:07:47 延续时间346tick--:添加音符[0.14, 0.7208333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '87'] +10:07:47 延续时间87tick--:添加音符[1.0, 0.18125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=58', '8'] +10:07:47 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=43', '3'] +10:07:47 延续时间3tick--:添加音符[0.19, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=44', '1'] +10:07:47 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.4, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.28, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.14, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.42, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.7, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '100'] +10:07:47 延续时间100tick--:添加音符[0.37, 0.20833333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=40', '302'] +10:07:47 延续时间302tick--:添加音符[0.37, 0.6291666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '166'] +10:07:47 延续时间166tick--:添加音符[1.0, 0.3458333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=60', '12'] +10:07:47 延续时间12tick--:添加音符[1.0, 0.025] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=46', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=49', '319'] +10:07:47 延续时间319tick--:添加音符[0.56, 0.6645833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '169'] +10:07:47 延续时间169tick--:添加音符[0.19, 0.35208333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=36', '10'] +10:07:47 延续时间10tick--:添加音符[0.19, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '235'] +10:07:47 延续时间235tick--:添加音符[0.37, 0.4895833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=29', '7'] +10:07:47 延续时间7tick--:添加音符[0.37, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '64', 'velocity=50', '4'] +10:07:47 延续时间4tick--:添加音符[0.94, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=33', '0'] +10:07:47 延续时间0tick--:添加音符[0.75, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=38', '0'] +10:07:47 延续时间0tick--:添加音符[0.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '16'] +10:07:47 延续时间16tick--:添加音符[1.0, 0.03333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '64', 'velocity=0', '14'] +10:07:47 延续时间14tick--:添加音符[0.94, 0.029166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '23'] +10:07:47 延续时间23tick--:添加音符[0.75, 0.04791666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[0.56, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=44', '83'] +10:07:47 延续时间83tick--:添加音符[4.5, 0.17291666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=27', '2'] +10:07:47 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=39', '3'] +10:07:47 延续时间3tick--:添加音符[2.67, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '161'] +10:07:47 延续时间161tick--:添加音符[4.5, 0.33541666666666664] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[2.67, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=46', '3'] +10:07:47 延续时间3tick--:添加音符[4.5, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=32', '3'] +10:07:47 延续时间3tick--:添加音符[0.67, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=46', '1'] +10:07:47 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '116'] +10:07:47 延续时间116tick--:添加音符[0.44, 0.24166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=36', '53'] +10:07:47 延续时间53tick--:添加音符[2.24, 0.11041666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '139'] +10:07:47 延续时间139tick--:添加音符[2.67, 0.28958333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=54', '2'] +10:07:47 延续时间2tick--:添加音符[4.76, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=55', '3'] +10:07:47 延续时间3tick--:添加音符[2.67, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=30', '3'] +10:07:47 延续时间3tick--:添加音符[0.9, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '146'] +10:07:47 延续时间146tick--:添加音符[2.24, 0.30416666666666664] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=43', '8'] +10:07:47 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '145'] +10:07:47 延续时间145tick--:添加音符[2.67, 0.3020833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[4.5, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=51', '9'] +10:07:47 延续时间9tick--:添加音符[4.5, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=48', '2'] +10:07:47 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=31', '2'] +10:07:47 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '133'] +10:07:47 延续时间133tick--:添加音符[2.24, 0.27708333333333335] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=34', '5'] +10:07:47 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=57', '155'] +10:07:47 延续时间155tick--:添加音符[4.0, 0.3229166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=33', '3'] +10:07:47 延续时间3tick--:添加音符[0.42, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '12'] +10:07:47 延续时间12tick--:添加音符[2.24, 0.025] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '3'] +10:07:47 延续时间3tick--:添加音符[0.67, 0.00625] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[0.9, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '10'] +10:07:47 延续时间10tick--:添加音符[1.12, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '8'] +10:07:47 延续时间8tick--:添加音符[2.67, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '7'] +10:07:47 延续时间7tick--:添加音符[4.76, 0.014583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=53', '82'] +10:07:47 延续时间82tick--:添加音符[2.24, 0.17083333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=40', '137'] +10:07:47 延续时间137tick--:添加音符[0.67, 0.28541666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=41', '2'] +10:07:47 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '139'] +10:07:47 延续时间139tick--:添加音符[2.24, 0.28958333333333336] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=53', '11'] +10:07:47 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=68', '155'] +10:07:47 延续时间155tick--:添加音符[5.34, 0.3229166666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=36', '14'] +10:07:47 延续时间14tick--:添加音符[1.0, 0.029166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '128'] +10:07:47 延续时间128tick--:添加音符[2.24, 0.26666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=47', '10'] +10:07:47 延续时间10tick--:添加音符[2.24, 0.020833333333333332] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '166'] +10:07:47 延续时间166tick--:添加音符[0.67, 0.3458333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[2.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=41', '5'] +10:07:47 延续时间5tick--:添加音符[0.67, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=47', '2'] +10:07:47 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '170'] +10:07:47 延续时间170tick--:添加音符[2.24, 0.3541666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=45', '5'] +10:07:47 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=28', '145'] +10:07:47 延续时间145tick--:添加音符[0.37, 0.3020833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=56', '0'] +10:07:47 延续时间0tick--:添加音符[3.56, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[1.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[4.0, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:47 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '0'] +10:07:47 延续时间0tick--:添加音符[5.34, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '2'] +10:07:47 延续时间2tick--:添加音符[0.42, 0.004166666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '4'] +10:07:47 延续时间4tick--:添加音符[4.5, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=41', '32'] +10:07:47 延续时间32tick--:添加音符[2.0, 0.06666666666666667] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '145'] +10:07:47 延续时间145tick--:添加音符[3.56, 0.3020833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=64', '8'] +10:07:47 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=36', '4'] +10:07:47 延续时间4tick--:添加音符[0.56, 0.008333333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=51', '0'] +10:07:47 延续时间0tick--:添加音符[1.8, 1.0] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=71', '316'] +10:07:47 延续时间316tick--:添加音符[4.0, 0.6583333333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=40', '6'] +10:07:47 延续时间6tick--:添加音符[0.75, 0.0125] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '142'] +10:07:47 延续时间142tick--:添加音符[2.0, 0.29583333333333334] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=40', '9'] +10:07:47 延续时间9tick--:添加音符[2.0, 0.01875] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '145'] +10:07:47 延续时间145tick--:添加音符[3.56, 0.3020833333333333] +10:07:47 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=63', '8'] +10:07:47 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=44', '6'] +10:07:48 延续时间6tick--:添加音符[0.9, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '139'] +10:07:48 延续时间139tick--:添加音符[1.8, 0.28958333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=42', '6'] +10:07:48 延续时间6tick--:添加音符[1.8, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=69', '179'] +10:07:48 延续时间179tick--:添加音符[4.5, 0.3729166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=58', '4'] +10:07:48 延续时间4tick--:添加音符[3.36, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=48', '0'] +10:07:48 延续时间0tick--:添加音符[0.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=46', '2'] +10:07:48 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '3'] +10:07:48 延续时间3tick--:添加音符[0.75, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[3.56, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.56, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=53', '62'] +10:07:48 延续时间62tick--:添加音符[2.24, 0.12916666666666668] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=47', '165'] +10:07:48 延续时间165tick--:添加音符[2.0, 0.34375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=43', '1'] +10:07:48 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=46', '149'] +10:07:48 延续时间149tick--:添加音符[1.7, 0.3104166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '168'] +10:07:48 延续时间168tick--:添加音符[0.67, 0.35] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[3.36, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=65', '9'] +10:07:48 延续时间9tick--:添加音符[3.36, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=42', '2'] +10:07:48 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '158'] +10:07:48 延续时间158tick--:添加音符[2.24, 0.32916666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=54', '9'] +10:07:48 延续时间9tick--:添加音符[2.24, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '160'] +10:07:48 延续时间160tick--:添加音符[0.84, 0.3333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=42', '4'] +10:07:48 延续时间4tick--:添加音符[0.84, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=47', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '126'] +10:07:48 延续时间126tick--:添加音符[1.7, 0.2625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=52', '5'] +10:07:48 延续时间5tick--:添加音符[1.7, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=36', '147'] +10:07:48 延续时间147tick--:添加音符[0.22, 0.30625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '46'] +10:07:48 延续时间46tick--:添加音符[4.5, 0.09583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.84, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '5'] +10:07:48 延续时间5tick--:添加音符[0.33, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[4.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=74', '1'] +10:07:48 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=52', '3'] +10:07:48 延续时间3tick--:添加音符[1.12, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=54', '0'] +10:07:48 延续时间0tick--:添加音符[1.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=55', '78'] +10:07:48 延续时间78tick--:添加音符[0.44, 0.1625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=64', '167'] +10:07:48 延续时间167tick--:添加音符[0.67, 0.34791666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=62', '144'] +10:07:48 延续时间144tick--:添加音符[0.9, 0.3] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '148'] +10:07:48 延续时间148tick--:添加音符[1.33, 0.30833333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=76', '5'] +10:07:48 延续时间5tick--:添加音符[2.0, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=75', '0'] +10:07:48 延续时间0tick--:添加音符[1.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=62', '0'] +10:07:48 延续时间0tick--:添加音符[1.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '149'] +10:07:48 延续时间149tick--:添加音符[0.67, 0.3104166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=59', '6'] +10:07:48 延续时间6tick--:添加音符[0.67, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '163'] +10:07:48 延续时间163tick--:添加音符[1.12, 0.33958333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.24, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=82', '4'] +10:07:48 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=60', '2'] +10:07:48 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=71', '0'] +10:07:48 延续时间0tick--:添加音符[1.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=43', '174'] +10:07:48 延续时间174tick--:添加音符[0.21, 0.3625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '158'] +10:07:48 延续时间158tick--:添加音符[1.33, 0.32916666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=68', '5'] +10:07:48 延续时间5tick--:添加音符[2.67, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=66', '2'] +10:07:48 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=48', '3'] +10:07:48 延续时间3tick--:添加音符[0.42, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=57', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '21'] +10:07:48 延续时间21tick--:添加音符[0.67, 0.04375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.44, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.24, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=0', '135'] +10:07:48 延续时间135tick--:添加音符[0.21, 0.28125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '161'] +10:07:48 延续时间161tick--:添加音符[1.33, 0.33541666666666664] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=71', '2'] +10:07:48 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=54', '3'] +10:07:48 延续时间3tick--:添加音符[1.33, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=50', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '156'] +10:07:48 延续时间156tick--:添加音符[0.42, 0.325] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=47', '6'] +10:07:48 延续时间6tick--:添加音符[0.42, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=50', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '133'] +10:07:48 延续时间133tick--:添加音符[1.33, 0.27708333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=71', '10'] +10:07:48 延续时间10tick--:添加音符[2.0, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=61', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=48', '1'] +10:07:48 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=49', '2'] +10:07:48 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=57', '164'] +10:07:48 延续时间164tick--:添加音符[0.84, 0.3416666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=72', '167'] +10:07:48 延续时间167tick--:添加音符[1.8, 0.34791666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '92'] +10:07:48 延续时间92tick--:添加音符[2.0, 0.19166666666666668] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=74', '11'] +10:07:48 延续时间11tick--:添加音符[2.0, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '82'] +10:07:48 延续时间82tick--:添加音符[1.8, 0.17083333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=61', '10'] +10:07:48 延续时间10tick--:添加音符[1.8, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=46', '155'] +10:07:48 延续时间155tick--:添加音符[0.15, 0.3229166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=49', '31'] +10:07:48 延续时间31tick--:添加音符[0.3, 0.06458333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '6'] +10:07:48 延续时间6tick--:添加音符[1.12, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=69', '1'] +10:07:48 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.84, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.42, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.24, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '24'] +10:07:48 延续时间24tick--:添加音符[1.0, 0.05] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '100'] +10:07:48 延续时间100tick--:添加音符[0.15, 0.20833333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=56', '231'] +10:07:48 延续时间231tick--:添加音符[0.6, 0.48125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=58', '150'] +10:07:48 延续时间150tick--:添加音符[0.75, 0.3125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=58', '168'] +10:07:48 延续时间168tick--:添加音符[1.0, 0.35] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=57', '153'] +10:07:48 延续时间153tick--:添加音符[1.12, 0.31875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '197'] +10:07:48 延续时间197tick--:添加音符[1.12, 0.41041666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=58', '4'] +10:07:48 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=43', '6'] +10:07:48 延续时间6tick--:添加音符[1.12, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=51', '517'] +10:07:48 延续时间517tick--:添加音符[3.0, 1.0770833333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1285'] +10:07:48 延续时间1285tick--:添加音符[1.5, 2.6770833333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=41', '9'] +10:07:48 延续时间9tick--:添加音符[1.5, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=41', '238'] +10:07:48 延续时间238tick--:添加音符[1.7, 0.49583333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=35', '326'] +10:07:48 延续时间326tick--:添加音符[0.19, 0.6791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=45', '2'] +10:07:48 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=32', '8'] +10:07:48 延续时间8tick--:添加音符[0.9, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.3, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '25'] +10:07:48 延续时间25tick--:添加音符[1.12, 0.052083333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=37', '473'] +10:07:48 延续时间473tick--:添加音符[0.56, 0.9854166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '65'] +10:07:48 延续时间65tick--:添加音符[0.19, 0.13541666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '5'] +10:07:48 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '5'] +10:07:48 延续时间5tick--:添加音符[0.56, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '11'] +10:07:48 延续时间11tick--:添加音符[1.8, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=54', '45'] +10:07:48 延续时间45tick--:添加音符[1.8, 0.09375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=36', '6'] +10:07:48 延续时间6tick--:添加音符[0.9, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=58', '174'] +10:07:48 延续时间174tick--:添加音符[1.7, 0.3625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '25'] +10:07:48 延续时间25tick--:添加音符[1.8, 0.052083333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '134'] +10:07:48 延续时间134tick--:添加音符[1.5, 0.2791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '5'] +10:07:48 延续时间5tick--:添加音符[1.7, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=56', '22'] +10:07:48 延续时间22tick--:添加音符[1.33, 0.04583333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=42', '74'] +10:07:48 延续时间74tick--:添加音符[0.14, 0.15416666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=55', '116'] +10:07:48 延续时间116tick--:添加音符[1.12, 0.24166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=43', '1'] +10:07:48 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=40', '5'] +10:07:48 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=43', '1'] +10:07:48 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '198'] +10:07:48 延续时间198tick--:添加音符[0.14, 0.4125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '7'] +10:07:48 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=52', '104'] +10:07:48 延续时间104tick--:添加音符[1.33, 0.21666666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '55'] +10:07:48 延续时间55tick--:添加音符[1.33, 0.11458333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=47', '106'] +10:07:48 延续时间106tick--:添加音符[0.28, 0.22083333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=55', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '9'] +10:07:48 延续时间9tick--:添加音符[0.84, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '21'] +10:07:48 延续时间21tick--:添加音符[0.28, 0.04375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=60', '139'] +10:07:48 延续时间139tick--:添加音符[0.67, 0.28958333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=36', '16'] +10:07:48 延续时间16tick--:添加音符[0.84, 0.03333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=32', '4'] +10:07:48 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=50', '118'] +10:07:48 延续时间118tick--:添加音符[0.5, 0.24583333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '30'] +10:07:48 延续时间30tick--:添加音符[0.84, 0.0625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '6'] +10:07:48 延续时间6tick--:添加音符[0.5, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '87'] +10:07:48 延续时间87tick--:添加音符[1.0, 0.18125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '17'] +10:07:48 延续时间17tick--:添加音符[1.33, 0.035416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '17'] +10:07:48 延续时间17tick--:添加音符[0.67, 0.035416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=65', '5'] +10:07:48 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=60', '156'] +10:07:48 延续时间156tick--:添加音符[0.84, 0.325] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=40', '144'] +10:07:48 延续时间144tick--:添加音符[0.15, 0.3] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '10'] +10:07:48 延续时间10tick--:添加音符[0.15, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '34'] +10:07:48 延续时间34tick--:添加音符[0.28, 0.07083333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.84, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=50', '4'] +10:07:48 延续时间4tick--:添加音符[0.3, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=76', '2'] +10:07:48 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=61', '3'] +10:07:48 延续时间3tick--:添加音符[0.75, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=61', '3'] +10:07:48 延续时间3tick--:添加音符[0.9, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '353'] +10:07:48 延续时间353tick--:添加音符[0.3, 0.7354166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '154'] +10:07:48 延续时间154tick--:添加音符[0.75, 0.32083333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=47', '4'] +10:07:48 延续时间4tick--:添加音符[0.3, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=39', '1'] +10:07:48 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '142'] +10:07:48 延续时间142tick--:添加音符[0.3, 0.29583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=76', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=47', '2'] +10:07:48 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '84'] +10:07:48 延续时间84tick--:添加音符[0.6, 0.175] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=84', '11'] +10:07:48 延续时间11tick--:添加音符[1.33, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=80', '162'] +10:07:48 延续时间162tick--:添加音符[1.2, 0.3375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '139'] +10:07:48 延续时间139tick--:添加音符[1.12, 0.28958333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=41', '44'] +10:07:48 延续时间44tick--:添加音符[0.22, 0.09166666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '135'] +10:07:48 延续时间135tick--:添加音符[1.12, 0.28125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=68', '11'] +10:07:48 延续时间11tick--:添加音符[0.67, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=75', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=53', '3'] +10:07:48 延续时间3tick--:添加音符[0.44, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=48', '5'] +10:07:48 延续时间5tick--:添加音符[0.33, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '4'] +10:07:48 延续时间4tick--:添加音符[0.33, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=46', '3'] +10:07:48 延续时间3tick--:添加音符[0.5, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '22'] +10:07:48 延续时间22tick--:添加音符[1.33, 0.04583333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '4'] +10:07:48 延续时间4tick--:添加音符[0.22, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '5'] +10:07:48 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '173'] +10:07:48 延续时间173tick--:添加音符[1.12, 0.36041666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=70', '35'] +10:07:48 延续时间35tick--:添加音符[1.12, 0.07291666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '141'] +10:07:48 延续时间141tick--:添加音符[1.12, 0.29375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=63', '7'] +10:07:48 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '3'] +10:07:48 延续时间3tick--:添加音符[0.9, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '8'] +10:07:48 延续时间8tick--:添加音符[0.44, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '8'] +10:07:48 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=55', '6'] +10:07:48 延续时间6tick--:添加音符[0.67, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=38', '3'] +10:07:48 延续时间3tick--:添加音符[0.5, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '127'] +10:07:48 延续时间127tick--:添加音符[0.5, 0.26458333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '8'] +10:07:48 延续时间8tick--:添加音符[0.67, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=46', '30'] +10:07:48 延续时间30tick--:添加音符[0.33, 0.0625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '43'] +10:07:48 延续时间43tick--:添加音符[0.33, 0.08958333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=58', '108'] +10:07:48 延续时间108tick--:添加音符[0.67, 0.225] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=36', '6'] +10:07:48 延续时间6tick--:添加音符[0.56, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=38', '0'] +10:07:48 延续时间0tick--:添加音符[0.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '45'] +10:07:48 延续时间45tick--:添加音符[1.12, 0.09375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=72', '98'] +10:07:48 延续时间98tick--:添加音符[1.12, 0.20416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=54', '78'] +10:07:48 延续时间78tick--:添加音符[0.25, 0.1625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=58', '57'] +10:07:48 延续时间57tick--:添加音符[0.44, 0.11875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=68', '1'] +10:07:48 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '5'] +10:07:48 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=62', '17'] +10:07:48 延续时间17tick--:添加音符[1.2, 0.035416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '9'] +10:07:48 延续时间9tick--:添加音符[0.56, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=74', '51'] +10:07:48 延续时间51tick--:添加音符[1.12, 0.10625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=63', '158'] +10:07:48 延续时间158tick--:添加音符[0.6, 0.32916666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=79', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '128'] +10:07:48 延续时间128tick--:添加音符[1.12, 0.26666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=98', '5'] +10:07:48 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=69', '1'] +10:07:48 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '178'] +10:07:48 延续时间178tick--:添加音符[1.2, 0.37083333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.25, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.44, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=87', '3'] +10:07:48 延续时间3tick--:添加音符[1.2, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=65', '1'] +10:07:48 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '41'] +10:07:48 延续时间41tick--:添加音符[1.12, 0.08541666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '34'] +10:07:48 延续时间34tick--:添加音符[0.9, 0.07083333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '71'] +10:07:48 延续时间71tick--:添加音符[1.2, 0.14791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '4'] +10:07:48 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=57', '8'] +10:07:48 延续时间8tick--:添加音符[0.6, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=73', '2'] +10:07:48 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '43'] +10:07:48 延续时间43tick--:添加音符[0.6, 0.08958333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=40', '113'] +10:07:48 延续时间113tick--:添加音符[0.25, 0.23541666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=70', '1'] +10:07:48 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '9'] +10:07:48 延续时间9tick--:添加音符[0.25, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '23'] +10:07:48 延续时间23tick--:添加音符[1.12, 0.04791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=74', '128'] +10:07:48 延续时间128tick--:添加音符[2.0, 0.26666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=45', '4'] +10:07:48 延续时间4tick--:添加音符[0.19, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=71', '180'] +10:07:48 延续时间180tick--:添加音符[1.7, 0.375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=60', '4'] +10:07:48 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=50', '1'] +10:07:48 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=56', '181'] +10:07:48 延续时间181tick--:添加音符[0.56, 0.3770833333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=76', '138'] +10:07:48 延续时间138tick--:添加音符[1.8, 0.2875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=62', '1'] +10:07:48 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '163'] +10:07:48 延续时间163tick--:添加音符[0.37, 0.33958333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '7'] +10:07:48 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=47', '1'] +10:07:48 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=69', '3'] +10:07:48 延续时间3tick--:添加音符[1.7, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=60', '3'] +10:07:48 延续时间3tick--:添加音符[1.0, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=47', '24'] +10:07:48 延续时间24tick--:添加音符[0.9, 0.05] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=41', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=50', '156'] +10:07:48 延续时间156tick--:添加音符[0.56, 0.325] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '9'] +10:07:48 延续时间9tick--:添加音符[0.37, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '15'] +10:07:48 延续时间15tick--:添加音符[0.75, 0.03125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=64', '13'] +10:07:48 延续时间13tick--:添加音符[1.5, 0.027083333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '149'] +10:07:48 延续时间149tick--:添加音符[1.7, 0.3104166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=59', '7'] +10:07:48 延续时间7tick--:添加音符[1.7, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '19'] +10:07:48 延续时间19tick--:添加音符[0.56, 0.03958333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '5'] +10:07:48 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=58', '5'] +10:07:48 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=69', '0'] +10:07:48 延续时间0tick--:添加音符[1.8, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=52', '5'] +10:07:48 延续时间5tick--:添加音符[0.3, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=70', '56'] +10:07:48 延续时间56tick--:添加音符[1.7, 0.11666666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=75', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '143'] +10:07:48 延续时间143tick--:添加音符[1.5, 0.29791666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=81', '5'] +10:07:48 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=78', '1'] +10:07:48 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '132'] +10:07:48 延续时间132tick--:添加音符[1.33, 0.275] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=93', '6'] +10:07:48 延续时间6tick--:添加音符[1.7, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=81', '0'] +10:07:48 延续时间0tick--:添加音符[1.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '217'] +10:07:48 延续时间217tick--:添加音符[1.5, 0.45208333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.8, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=71', '6'] +10:07:48 延续时间6tick--:添加音符[1.5, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=80', '2'] +10:07:48 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '19'] +10:07:48 延续时间19tick--:添加音符[1.7, 0.03958333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=78', '112'] +10:07:48 延续时间112tick--:添加音符[1.7, 0.23333333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=70', '0'] +10:07:48 延续时间0tick--:添加音符[1.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '195'] +10:07:48 延续时间195tick--:添加音符[1.2, 0.40625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=64', '6'] +10:07:48 延续时间6tick--:添加音符[1.2, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=76', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=47', '137'] +10:07:48 延续时间137tick--:添加音符[0.14, 0.28541666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '87'] +10:07:48 延续时间87tick--:添加音符[1.7, 0.18125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=55', '3'] +10:07:48 延续时间3tick--:添加音符[0.28, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=59', '6'] +10:07:48 延续时间6tick--:添加音符[0.75, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=75', '0'] +10:07:48 延续时间0tick--:添加音符[1.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=54', '1'] +10:07:48 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.2, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=62', '0'] +10:07:48 延续时间0tick--:添加音符[0.84, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.3, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '11'] +10:07:48 延续时间11tick--:添加音符[1.8, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '189'] +10:07:48 延续时间189tick--:添加音符[0.75, 0.39375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '103'] +10:07:48 延续时间103tick--:添加音符[0.14, 0.21458333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '31'] +10:07:48 延续时间31tick--:添加音符[0.84, 0.06458333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=45', '6'] +10:07:48 延续时间6tick--:添加音符[0.84, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=43', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '147'] +10:07:48 延续时间147tick--:添加音符[0.28, 0.30625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=60', '11'] +10:07:48 延续时间11tick--:添加音符[0.28, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=56', '0'] +10:07:48 延续时间0tick--:添加音符[0.42, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '61'] +10:07:48 延续时间61tick--:添加音符[0.84, 0.12708333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '20'] +10:07:48 延续时间20tick--:添加音符[0.75, 0.041666666666666664] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=66', '114'] +10:07:48 延续时间114tick--:添加音符[1.12, 0.2375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=66', '2'] +10:07:48 延续时间2tick--:添加音符[0.7, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=58', '1'] +10:07:48 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=68', '326'] +10:07:48 延续时间326tick--:添加音符[1.5, 0.6791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '156'] +10:07:48 延续时间156tick--:添加音符[1.7, 0.325] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=60', '4'] +10:07:48 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=47', '158'] +10:07:48 延续时间158tick--:添加音符[0.19, 0.32916666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '127'] +10:07:48 延续时间127tick--:添加音符[0.56, 0.26458333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=62', '1'] +10:07:48 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=48', '3'] +10:07:48 延续时间3tick--:添加音符[0.9, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=35', '1'] +10:07:48 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '115'] +10:07:48 延续时间115tick--:添加音符[0.19, 0.23958333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=48', '333'] +10:07:48 延续时间333tick--:添加音符[0.56, 0.69375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '186'] +10:07:48 延续时间186tick--:添加音符[0.37, 0.3875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '7'] +10:07:48 延续时间7tick--:添加音符[0.9, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.8, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=57', '4'] +10:07:48 延续时间4tick--:添加音符[0.37, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '0'] +10:07:48 延续时间0tick--:添加音符[1.8, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=72', '2'] +10:07:48 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=61', '150'] +10:07:48 延续时间150tick--:添加音符[0.75, 0.3125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=84', '1'] +10:07:48 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=84', '160'] +10:07:48 延续时间160tick--:添加音符[1.5, 0.3333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=74', '178'] +10:07:48 延续时间178tick--:添加音符[1.33, 0.37083333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '28'] +10:07:48 延续时间28tick--:添加音符[1.12, 0.058333333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=70', '129'] +10:07:48 延续时间129tick--:添加音符[1.12, 0.26875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=56', '4'] +10:07:48 延续时间4tick--:添加音符[0.14, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=61', '0'] +10:07:48 延续时间0tick--:添加音符[0.28, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.8, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '18'] +10:07:48 延续时间18tick--:添加音符[0.56, 0.0375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '72'] +10:07:48 延续时间72tick--:添加音符[0.14, 0.15] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=59', '159'] +10:07:48 延续时间159tick--:添加音符[0.84, 0.33125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=74', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '143'] +10:07:48 延续时间143tick--:添加音符[0.28, 0.29791666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.84, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '15'] +10:07:48 延续时间15tick--:添加音符[1.33, 0.03125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=54', '9'] +10:07:48 延续时间9tick--:添加音符[0.28, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=79', '0'] +10:07:48 延续时间0tick--:添加音符[1.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=50', '1'] +10:07:48 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '64'] +10:07:48 延续时间64tick--:添加音符[0.42, 0.13333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=70', '102'] +10:07:48 延续时间102tick--:添加音符[0.56, 0.2125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=67', '1'] +10:07:48 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=65', '0'] +10:07:48 延续时间0tick--:添加音符[1.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '62'] +10:07:48 延续时间62tick--:添加音符[1.0, 0.12916666666666668] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '19'] +10:07:48 延续时间19tick--:添加音符[0.28, 0.03958333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '6'] +10:07:48 延续时间6tick--:添加音符[0.56, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=64', '42'] +10:07:48 延续时间42tick--:添加音符[0.42, 0.0875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '130'] +10:07:48 延续时间130tick--:添加音符[1.33, 0.2708333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=92', '6'] +10:07:48 延续时间6tick--:添加音符[1.33, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '156'] +10:07:48 延续时间156tick--:添加音符[0.9, 0.325] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=53', '44'] +10:07:48 延续时间44tick--:添加音符[0.15, 0.09166666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '132'] +10:07:48 延续时间132tick--:添加音符[0.15, 0.275] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=43', '10'] +10:07:48 延续时间10tick--:添加音符[0.15, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=49', '11'] +10:07:48 延续时间11tick--:添加音符[0.3, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '14'] +10:07:48 延续时间14tick--:添加音符[0.42, 0.029166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '5'] +10:07:48 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=83', '1'] +10:07:48 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=50', '1'] +10:07:48 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=59', '2'] +10:07:48 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=51', '3'] +10:07:48 延续时间3tick--:添加音符[0.9, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '61'] +10:07:48 延续时间61tick--:添加音符[0.15, 0.12708333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '8'] +10:07:48 延续时间8tick--:添加音符[0.3, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '16'] +10:07:48 延续时间16tick--:添加音符[1.33, 0.03333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=54', '37'] +10:07:48 延续时间37tick--:添加音符[0.3, 0.07708333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=45', '26'] +10:07:48 延续时间26tick--:添加音符[0.44, 0.05416666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '13'] +10:07:48 延续时间13tick--:添加音符[0.75, 0.027083333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '139'] +10:07:48 延续时间139tick--:添加音符[0.9, 0.28958333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=59', '4'] +10:07:48 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=68', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=85', '1'] +10:07:48 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=55', '4'] +10:07:48 延续时间4tick--:添加音符[0.9, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '11'] +10:07:48 延续时间11tick--:添加音符[0.44, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '6'] +10:07:48 延续时间6tick--:添加音符[1.2, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=67', '73'] +10:07:48 延续时间73tick--:添加音符[0.44, 0.15208333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=91', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=84', '154'] +10:07:48 延续时间154tick--:添加音符[1.2, 0.32083333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=86', '134'] +10:07:48 延续时间134tick--:添加音符[1.12, 0.2791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '196'] +10:07:48 延续时间196tick--:添加音符[0.9, 0.4083333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=78', '4'] +10:07:48 延续时间4tick--:添加音符[0.67, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=71', '1'] +10:07:48 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=76', '1'] +10:07:48 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=68', '1'] +10:07:48 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '16'] +10:07:48 延续时间16tick--:添加音符[0.44, 0.03333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '10'] +10:07:48 延续时间10tick--:添加音符[1.2, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '36'] +10:07:48 延续时间36tick--:添加音符[1.5, 0.075] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '23'] +10:07:48 延续时间23tick--:添加音符[0.75, 0.04791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '4'] +10:07:48 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '12'] +10:07:48 延续时间12tick--:添加音符[0.3, 0.025] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '8'] +10:07:48 延续时间8tick--:添加音符[1.33, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=64', '56'] +10:07:48 延续时间56tick--:添加音符[0.44, 0.11666666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '131'] +10:07:48 延续时间131tick--:添加音符[1.12, 0.27291666666666664] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=98', '5'] +10:07:48 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '141'] +10:07:48 延续时间141tick--:添加音符[1.12, 0.29375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '10'] +10:07:48 延续时间10tick--:添加音符[1.12, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '120'] +10:07:48 延续时间120tick--:添加音符[0.44, 0.25] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=48', '10'] +10:07:48 延续时间10tick--:添加音符[0.44, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '29'] +10:07:48 延续时间29tick--:添加音符[0.5, 0.06041666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=89', '10'] +10:07:48 延续时间10tick--:添加音符[0.9, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=90', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=86', '1'] +10:07:48 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=82', '0'] +10:07:48 延续时间0tick--:添加音符[0.56, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '134'] +10:07:48 延续时间134tick--:添加音符[0.44, 0.2791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=82', '9'] +10:07:48 延续时间9tick--:添加音符[0.44, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '153'] +10:07:48 延续时间153tick--:添加音符[0.5, 0.31875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.56, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=73', '10'] +10:07:48 延续时间10tick--:添加音符[0.5, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=84', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=74', '0'] +10:07:48 延续时间0tick--:添加音符[0.56, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '136'] +10:07:48 延续时间136tick--:添加音符[1.12, 0.2833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '8'] +10:07:48 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=76', '51'] +10:07:48 延续时间51tick--:添加音符[0.125, 0.10625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '163'] +10:07:48 延续时间163tick--:添加音符[0.9, 0.33958333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=95', '7'] +10:07:48 延续时间7tick--:添加音符[1.2, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=80', '1'] +10:07:48 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=71', '0'] +10:07:48 延续时间0tick--:添加音符[0.25, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '11'] +10:07:48 延续时间11tick--:添加音符[0.5, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.44, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.56, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '89'] +10:07:48 延续时间89tick--:添加音符[1.12, 0.18541666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '157'] +10:07:48 延续时间157tick--:添加音符[0.25, 0.32708333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=60', '6'] +10:07:48 延续时间6tick--:添加音符[0.25, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=90', '2'] +10:07:48 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '122'] +10:07:48 延续时间122tick--:添加音符[1.12, 0.25416666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '11'] +10:07:48 延续时间11tick--:添加音符[1.12, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=69', '0'] +10:07:48 延续时间0tick--:添加音符[0.44, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '166'] +10:07:48 延续时间166tick--:添加音符[1.2, 0.3458333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=97', '5'] +10:07:48 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=73', '1'] +10:07:48 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '132'] +10:07:48 延续时间132tick--:添加音符[1.12, 0.275] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '4'] +10:07:48 延续时间4tick--:添加音符[1.12, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=71', '1'] +10:07:48 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '156'] +10:07:48 延续时间156tick--:添加音符[0.6, 0.325] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.2, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=63', '6'] +10:07:48 延续时间6tick--:添加音符[0.6, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=88', '1'] +10:07:48 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=95', '153'] +10:07:48 延续时间153tick--:添加音符[2.0, 0.31875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '217'] +10:07:48 延续时间217tick--:添加音符[1.0, 0.45208333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=66', '3'] +10:07:48 延续时间3tick--:添加音符[0.19, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=89', '1'] +10:07:48 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '0'] +10:07:48 延续时间0tick--:添加音符[1.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '11'] +10:07:48 延续时间11tick--:添加音符[0.125, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '3'] +10:07:48 延续时间3tick--:添加音符[0.25, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.44, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.6, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '9'] +10:07:48 延续时间9tick--:添加音符[0.9, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '23'] +10:07:48 延续时间23tick--:添加音符[0.5, 0.04791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '215'] +10:07:48 延续时间215tick--:添加音符[0.19, 0.4479166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=60', '10'] +10:07:48 延续时间10tick--:添加音符[0.19, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=88', '1'] +10:07:48 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=80', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '143'] +10:07:48 延续时间143tick--:添加音符[1.7, 0.29791666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '7'] +10:07:48 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=77', '3'] +10:07:48 延续时间3tick--:添加音符[0.56, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=81', '1'] +10:07:48 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=75', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=70', '162'] +10:07:48 延续时间162tick--:添加音符[0.37, 0.3375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=88', '3'] +10:07:48 延续时间3tick--:添加音符[0.9, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '153'] +10:07:48 延续时间153tick--:添加音符[1.0, 0.31875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=101', '2'] +10:07:48 延续时间2tick--:添加音符[0.75, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=57', '7'] +10:07:48 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '145'] +10:07:48 延续时间145tick--:添加音符[0.56, 0.3020833333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=57', '4'] +10:07:48 延续时间4tick--:添加音符[0.56, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=83', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=64', '128'] +10:07:48 延续时间128tick--:添加音符[0.15, 0.26666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '167'] +10:07:48 延续时间167tick--:添加音符[0.75, 0.34791666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +10:07:48 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=103', '3'] +10:07:48 延续时间3tick--:添加音符[0.75, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=105', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=90', '1'] +10:07:48 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=101', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '7'] +10:07:48 延续时间7tick--:添加音符[0.37, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '4'] +10:07:48 延续时间4tick--:添加音符[0.56, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '7'] +10:07:48 延续时间7tick--:添加音符[0.19, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '246'] +10:07:48 延续时间246tick--:添加音符[0.3, 0.5125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=75', '5'] +10:07:48 延续时间5tick--:添加音符[0.3, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=80', '0'] +10:07:48 延续时间0tick--:添加音符[0.44, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=93', '139'] +10:07:48 延续时间139tick--:添加音符[0.6, 0.28958333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '132'] +10:07:48 延续时间132tick--:添加音符[1.5, 0.275] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '8'] +10:07:48 延续时间8tick--:添加音符[0.75, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=108', '3'] +10:07:48 延续时间3tick--:添加音符[1.5, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=100', '1'] +10:07:48 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=77', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=97', '0'] +10:07:48 延续时间0tick--:添加音符[1.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '150'] +10:07:48 延续时间150tick--:添加音符[0.3, 0.3125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=78', '5'] +10:07:48 延续时间5tick--:添加音符[0.3, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '133'] +10:07:48 延续时间133tick--:添加音符[0.75, 0.27708333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '7'] +10:07:48 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=90', '4'] +10:07:48 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=92', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=81', '1'] +10:07:48 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=79', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '71'] +10:07:48 延续时间71tick--:添加音符[0.15, 0.14791666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=72', '11'] +10:07:48 延续时间11tick--:添加音符[0.15, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=72', '120'] +10:07:48 延续时间120tick--:添加音符[0.14, 0.25] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '123'] +10:07:48 延续时间123tick--:添加音符[0.75, 0.25625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=102', '5'] +10:07:48 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=109', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '0'] +10:07:48 延续时间0tick--:添加音符[0.28, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '4'] +10:07:48 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '27'] +10:07:48 延续时间27tick--:添加音符[0.15, 0.05625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '3'] +10:07:48 延续时间3tick--:添加音符[0.14, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=100', '90'] +10:07:48 延续时间90tick--:添加音符[1.7, 0.1875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '148'] +10:07:48 延续时间148tick--:添加音符[0.28, 0.30833333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=79', '4'] +10:07:48 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=91', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=65', '7'] +10:07:48 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=87', '136'] +10:07:48 延续时间136tick--:添加音符[0.42, 0.2833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '152'] +10:07:48 延续时间152tick--:添加音符[1.0, 0.31666666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=113', '7'] +10:07:48 延续时间7tick--:添加音符[0.7, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=110', '1'] +10:07:48 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=103', '2'] +10:07:48 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=105', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[0.42, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '21'] +10:07:48 延续时间21tick--:添加音符[1.5, 0.04375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '222'] +10:07:48 延续时间222tick--:添加音符[0.28, 0.4625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=95', '12'] +10:07:48 延续时间12tick--:添加音符[0.28, 0.025] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=113', '0'] +10:07:48 延续时间0tick--:添加音符[0.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=70', '152'] +10:07:48 延续时间152tick--:添加音符[0.094, 0.31666666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '5'] +10:07:48 延续时间5tick--:添加音符[0.094, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '192'] +10:07:48 延续时间192tick--:添加音符[1.12, 0.4] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=86', '10'] +10:07:48 延续时间10tick--:添加音符[1.12, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=110', '1'] +10:07:48 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=104', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=95', '1'] +10:07:48 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=101', '1'] +10:07:48 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '49'] +10:07:48 延续时间49tick--:添加音符[1.7, 0.10208333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +10:07:48 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '15'] +10:07:48 延续时间15tick--:添加音符[0.28, 0.03125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '169'] +10:07:48 延续时间169tick--:添加音符[1.12, 0.35208333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=87', '8'] +10:07:48 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '1'] +10:07:48 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=85', '2'] +10:07:48 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=92', '163'] +10:07:48 延续时间163tick--:添加音符[0.56, 0.33958333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '148'] +10:07:48 延续时间148tick--:添加音符[1.8, 0.30833333333333335] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.24, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=101', '10'] +10:07:48 延续时间10tick--:添加音符[2.24, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=88', '1'] +10:07:48 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=89', '0'] +10:07:48 延续时间0tick--:添加音符[1.8, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '143'] +10:07:48 延续时间143tick--:添加音符[0.75, 0.29791666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=81', '9'] +10:07:48 延续时间9tick--:添加音符[0.75, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=89', '1'] +10:07:48 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=87', '0'] +10:07:48 延续时间0tick--:添加音符[1.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '136'] +10:07:48 延续时间136tick--:添加音符[2.24, 0.2833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=102', '9'] +10:07:48 延续时间9tick--:添加音符[2.24, 0.01875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '129'] +10:07:48 延续时间129tick--:添加音符[1.8, 0.26875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.24, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=105', '4'] +10:07:48 延续时间4tick--:添加音符[3.0, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=90', '2'] +10:07:48 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=80', '4'] +10:07:48 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=68', '144'] +10:07:48 延续时间144tick--:添加音符[0.14, 0.3] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '61'] +10:07:48 延续时间61tick--:添加音符[1.7, 0.12708333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=83', '3'] +10:07:48 延续时间3tick--:添加音符[0.28, 0.00625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=97', '1'] +10:07:48 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=94', '2'] +10:07:48 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '6'] +10:07:48 延续时间6tick--:添加音符[0.44, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.8, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.12, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[3.0, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.24, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.56, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '10'] +10:07:48 延续时间10tick--:添加音符[0.19, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '229'] +10:07:48 延续时间229tick--:添加音符[2.24, 0.47708333333333336] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=97', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=76', '142'] +10:07:48 延续时间142tick--:添加音符[0.67, 0.29583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=78', '0'] +10:07:48 延续时间0tick--:添加音符[0.84, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=70', '0'] +10:07:48 延续时间0tick--:添加音符[0.56, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '81'] +10:07:48 延续时间81tick--:添加音符[1.33, 0.16875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=77', '11'] +10:07:48 延续时间11tick--:添加音符[1.33, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '28'] +10:07:48 延续时间28tick--:添加音符[1.7, 0.058333333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=73', '7'] +10:07:48 延续时间7tick--:添加音符[1.7, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '31'] +10:07:48 延续时间31tick--:添加音符[2.67, 0.06458333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=97', '11'] +10:07:48 延续时间11tick--:添加音符[2.67, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '142'] +10:07:48 延续时间142tick--:添加音符[0.84, 0.29583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=88', '7'] +10:07:48 延续时间7tick--:添加音符[0.84, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '146'] +10:07:48 延续时间146tick--:添加音符[0.67, 0.30416666666666664] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.33, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=76', '8'] +10:07:48 延续时间8tick--:添加音符[0.67, 0.016666666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=89', '1'] +10:07:48 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=89', '1'] +10:07:48 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=76', '155'] +10:07:48 延续时间155tick--:添加音符[0.15, 0.3229166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=92', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=96', '164'] +10:07:48 延续时间164tick--:添加音符[3.0, 0.3416666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=92', '1'] +10:07:48 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=95', '1'] +10:07:48 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '11'] +10:07:48 延续时间11tick--:添加音符[0.56, 0.022916666666666665] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.28, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.67, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '2'] +10:07:48 延续时间2tick--:添加音符[1.33, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '21'] +10:07:48 延续时间21tick--:添加音符[0.14, 0.04375] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '231'] +10:07:48 延续时间231tick--:添加音符[1.8, 0.48125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '7'] +10:07:48 延续时间7tick--:添加音符[1.5, 0.014583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=85', '4'] +10:07:48 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=71', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=91', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '142'] +10:07:48 延续时间142tick--:添加音符[0.3, 0.29583333333333334] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=79', '10'] +10:07:48 延续时间10tick--:添加音符[0.3, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=78', '1'] +10:07:48 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '135'] +10:07:48 延续时间135tick--:添加音符[0.3, 0.28125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=83', '6'] +10:07:48 延续时间6tick--:添加音符[0.3, 0.0125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '2'] +10:07:48 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=94', '2'] +10:07:48 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=79', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=101', '149'] +10:07:48 延续时间149tick--:添加音符[1.7, 0.3104166666666667] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=87', '0'] +10:07:48 延续时间0tick--:添加音符[0.84, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '156'] +10:07:48 延续时间156tick--:添加音符[0.44, 0.325] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.8, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=74', '5'] +10:07:48 延续时间5tick--:添加音符[0.44, 0.010416666666666666] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '1'] +10:07:48 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=91', '129'] +10:07:48 延续时间129tick--:添加音符[2.4, 0.26875] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=63', '99'] +10:07:48 延续时间99tick--:添加音符[0.11, 0.20625] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '12'] +10:07:48 延续时间12tick--:添加音符[0.11, 0.025] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '54'] +10:07:48 延续时间54tick--:添加音符[2.24, 0.1125] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '10'] +10:07:48 延续时间10tick--:添加音符[0.44, 0.020833333333333332] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.7, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.75, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[2.4, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.84, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.6, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.9, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[0.3, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.5, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:48 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '19'] +10:07:48 延续时间19tick--:添加音符[0.15, 0.03958333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:48 延续时间0tick--:添加音符[1.8, 1.0] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=103', '4'] +10:07:48 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:48 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=97', '1'] +10:07:49 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=80', '105'] +10:07:49 延续时间105tick--:添加音符[0.44, 0.21875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=87', '161'] +10:07:49 延续时间161tick--:添加音符[2.0, 0.33541666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=87', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '132'] +10:07:49 延续时间132tick--:添加音符[1.8, 0.275] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=80', '9'] +10:07:49 延续时间9tick--:添加音符[1.8, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=80', '3'] +10:07:49 延续时间3tick--:添加音符[0.9, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=70', '63'] +10:07:49 延续时间63tick--:添加音符[0.14, 0.13125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '101'] +10:07:49 延续时间101tick--:添加音符[1.12, 0.21041666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=92', '8'] +10:07:49 延续时间8tick--:添加音符[0.28, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.9, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '4'] +10:07:49 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=96', '2'] +10:07:49 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=94', '1'] +10:07:49 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=86', '1'] +10:07:49 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=83', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '138'] +10:07:49 延续时间138tick--:添加音符[0.14, 0.2875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '108'] +10:07:49 延续时间108tick--:添加音符[0.84, 0.225] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=95', '5'] +10:07:49 延续时间5tick--:添加音符[0.84, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[0.28, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=78', '0'] +10:07:49 延续时间0tick--:添加音符[0.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=85', '2'] +10:07:49 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=74', '2'] +10:07:49 延续时间2tick--:添加音符[0.28, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=86', '128'] +10:07:49 延续时间128tick--:添加音符[0.9, 0.26666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=97', '194'] +10:07:49 延续时间194tick--:添加音符[0.25, 0.4041666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=98', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.84, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '261'] +10:07:49 延续时间261tick--:添加音符[1.5, 0.54375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=91', '6'] +10:07:49 延续时间6tick--:添加音符[1.5, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=84', '1'] +10:07:49 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=75', '1'] +10:07:49 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '138'] +10:07:49 延续时间138tick--:添加音符[0.5, 0.2875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=82', '3'] +10:07:49 延续时间3tick--:添加音符[0.75, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=89', '1'] +10:07:49 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=88', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=84', '1'] +10:07:49 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '156'] +10:07:49 延续时间156tick--:添加音符[1.2, 0.325] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=88', '9'] +10:07:49 延续时间9tick--:添加音符[1.2, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=83', '1'] +10:07:49 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=87', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=82', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '142'] +10:07:49 延续时间142tick--:添加音符[1.2, 0.29583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=91', '11'] +10:07:49 延续时间11tick--:添加音符[0.9, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=79', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=71', '1'] +10:07:49 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '142'] +10:07:49 延续时间142tick--:添加音符[0.6, 0.29583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=80', '4'] +10:07:49 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=75', '1'] +10:07:49 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=91', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=87', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=103', '127'] +10:07:49 延续时间127tick--:添加音符[2.4, 0.26458333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=74', '133'] +10:07:49 延续时间133tick--:添加音符[0.4, 0.27708333333333335] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '57'] +10:07:49 延续时间57tick--:添加音符[1.7, 0.11875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.9, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.25, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '5'] +10:07:49 延续时间5tick--:添加音符[1.33, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=90', '4'] +10:07:49 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=89', '0'] +10:07:49 延续时间0tick--:添加音符[0.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '139'] +10:07:49 延续时间139tick--:添加音符[2.24, 0.28958333333333336] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '2'] +10:07:49 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=82', '1'] +10:07:49 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=83', '1'] +10:07:49 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '187'] +10:07:49 延续时间187tick--:添加音符[0.4, 0.38958333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=73', '6'] +10:07:49 延续时间6tick--:添加音符[0.4, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=95', '2'] +10:07:49 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=88', '1'] +10:07:49 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '176'] +10:07:49 延续时间176tick--:添加音符[0.4, 0.36666666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=98', '6'] +10:07:49 延续时间6tick--:添加音符[1.2, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=94', '0'] +10:07:49 延续时间0tick--:添加音符[0.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=100', '1'] +10:07:49 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=103', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=78', '3'] +10:07:49 延续时间3tick--:添加音符[1.6, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=67', '147'] +10:07:49 延续时间147tick--:添加音符[0.1, 0.30625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=0', '10'] +10:07:49 延续时间10tick--:添加音符[0.1, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '115'] +10:07:49 延续时间115tick--:添加音符[0.4, 0.23958333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=90', '6'] +10:07:49 延续时间6tick--:添加音符[0.6, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=102', '0'] +10:07:49 延续时间0tick--:添加音符[0.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=76', '1'] +10:07:49 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=88', '2'] +10:07:49 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=82', '2'] +10:07:49 延续时间2tick--:添加音符[0.4, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=88', '128'] +10:07:49 延续时间128tick--:添加音符[0.14, 0.26666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '176'] +10:07:49 延续时间176tick--:添加音符[2.24, 0.36666666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[0.14, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=101', '1'] +10:07:49 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '1'] +10:07:49 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=102', '1'] +10:07:49 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '1'] +10:07:49 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=91', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '42'] +10:07:49 延续时间42tick--:添加音符[0.3, 0.0875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '4'] +10:07:49 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.9, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.14, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[1.6, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=95', '178'] +10:07:49 延续时间178tick--:添加音符[1.12, 0.37083333333333335] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=96', '2'] +10:07:49 延续时间2tick--:添加音符[0.75, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '134'] +10:07:49 延续时间134tick--:添加音符[0.28, 0.2791666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=85', '11'] +10:07:49 延续时间11tick--:添加音符[0.42, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=83', '1'] +10:07:49 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '134'] +10:07:49 延续时间134tick--:添加音符[0.75, 0.2791666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=94', '3'] +10:07:49 延续时间3tick--:添加音符[0.56, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=104', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=103', '1'] +10:07:49 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=83', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=91', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '121'] +10:07:49 延续时间121tick--:添加音符[0.14, 0.2520833333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '180'] +10:07:49 延续时间180tick--:添加音符[1.12, 0.375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.14, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=108', '3'] +10:07:49 延续时间3tick--:添加音符[0.84, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=100', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=105', '1'] +10:07:49 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=99', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '0'] +10:07:49 延续时间0tick--:添加音符[0.14, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '9'] +10:07:49 延续时间9tick--:添加音符[0.42, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '14'] +10:07:49 延续时间14tick--:添加音符[0.56, 0.029166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '200'] +10:07:49 延续时间200tick--:添加音符[0.28, 0.4166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=104', '5'] +10:07:49 延续时间5tick--:添加音符[0.7, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=64', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '125'] +10:07:49 延续时间125tick--:添加音符[0.28, 0.2604166666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=91', '4'] +10:07:49 延续时间4tick--:添加音符[0.42, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=87', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=99', '118'] +10:07:49 延续时间118tick--:添加音符[1.8, 0.24583333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '40'] +10:07:49 延续时间40tick--:添加音符[1.7, 0.08333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=109', '10'] +10:07:49 延续时间10tick--:添加音符[0.56, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=97', '1'] +10:07:49 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=113', '148'] +10:07:49 延续时间148tick--:添加音符[1.5, 0.30833333333333335] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '156'] +10:07:49 延续时间156tick--:添加音符[0.14, 0.325] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '69', 'velocity=96', '4'] +10:07:49 延续时间4tick--:添加音符[1.25, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=111', '1'] +10:07:49 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=93', '3'] +10:07:49 延续时间3tick--:添加音符[0.14, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=89', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '130'] +10:07:49 延续时间130tick--:添加音符[0.14, 0.2708333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=78', '10'] +10:07:49 延续时间10tick--:添加音符[0.14, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '151'] +10:07:49 延续时间151tick--:添加音符[0.84, 0.3145833333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=108', '8'] +10:07:49 延续时间8tick--:添加音符[1.4, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=96', '1'] +10:07:49 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=77', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '74'] +10:07:49 延续时间74tick--:添加音符[0.14, 0.15416666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=90', '4'] +10:07:49 延续时间4tick--:添加音符[0.094, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=87', '2'] +10:07:49 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '9'] +10:07:49 延续时间9tick--:添加音符[0.094, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '207'] +10:07:49 延续时间207tick--:添加音符[1.12, 0.43125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=103', '4'] +10:07:49 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=102', '0'] +10:07:49 延续时间0tick--:添加音符[0.9, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=91', '2'] +10:07:49 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '32'] +10:07:49 延续时间32tick--:添加音符[0.7, 0.06666666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.14, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '69', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.25, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.42, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.84, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +10:07:49 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.28, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=95', '180'] +10:07:49 延续时间180tick--:添加音符[2.24, 0.375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=81', '104'] +10:07:49 延续时间104tick--:添加音符[0.37, 0.21666666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '177'] +10:07:49 延续时间177tick--:添加音符[2.24, 0.36875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=84', '3'] +10:07:49 延续时间3tick--:添加音符[0.56, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=104', '1'] +10:07:49 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=78', '1'] +10:07:49 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=98', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '132'] +10:07:49 延续时间132tick--:添加音符[0.75, 0.275] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=93', '5'] +10:07:49 延续时间5tick--:添加音符[0.75, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=88', '4'] +10:07:49 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '0'] +10:07:49 延续时间0tick--:添加音符[2.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=44', '40'] +10:07:49 延续时间40tick--:添加音符[0.44, 0.08333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '97'] +10:07:49 延续时间97tick--:添加音符[1.8, 0.20208333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=73', '1'] +10:07:49 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '5'] +10:07:49 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=76', '2'] +10:07:49 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '138'] +10:07:49 延续时间138tick--:添加音符[1.8, 0.2875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=106', '3'] +10:07:49 延续时间3tick--:添加音符[3.0, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=88', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=79', '98'] +10:07:49 延续时间98tick--:添加音符[0.14, 0.20416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.37, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[0.44, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.14, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '14'] +10:07:49 延续时间14tick--:添加音符[0.19, 0.029166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.42, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[1.7, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '4'] +10:07:49 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=94', '1'] +10:07:49 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=94', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=98', '232'] +10:07:49 延续时间232tick--:添加音符[1.33, 0.48333333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=95', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=76', '124'] +10:07:49 延续时间124tick--:添加音符[0.56, 0.25833333333333336] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=79', '16'] +10:07:49 延续时间16tick--:添加音符[0.67, 0.03333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=78', '2'] +10:07:49 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '63'] +10:07:49 延续时间63tick--:添加音符[1.33, 0.13125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=82', '8'] +10:07:49 延续时间8tick--:添加音符[1.33, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '23'] +10:07:49 延续时间23tick--:添加音符[1.7, 0.04791666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=67', '11'] +10:07:49 延续时间11tick--:添加音符[1.7, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '43'] +10:07:49 延续时间43tick--:添加音符[2.67, 0.08958333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=104', '10'] +10:07:49 延续时间10tick--:添加音符[2.67, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=76', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '118'] +10:07:49 延续时间118tick--:添加音符[0.56, 0.24583333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.67, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.84, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=78', '10'] +10:07:49 延续时间10tick--:添加音符[0.67, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=68', '1'] +10:07:49 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=72', '0'] +10:07:49 延续时间0tick--:添加音符[0.84, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '174'] +10:07:49 延续时间174tick--:添加音符[0.67, 0.3625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=75', '10'] +10:07:49 延续时间10tick--:添加音符[0.67, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=93', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=90', '1'] +10:07:49 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=93', '131'] +10:07:49 延续时间131tick--:添加音符[1.5, 0.27291666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=67', '84'] +10:07:49 延续时间84tick--:添加音符[0.15, 0.175] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.84, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.67, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=100', '14'] +10:07:49 延续时间14tick--:添加音符[3.0, 0.029166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=90', '0'] +10:07:49 延续时间0tick--:添加音符[0.3, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=96', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '223'] +10:07:49 延续时间223tick--:添加音符[1.8, 0.46458333333333335] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=84', '6'] +10:07:49 延续时间6tick--:添加音符[1.8, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=91', '0'] +10:07:49 延续时间0tick--:添加音符[0.9, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=71', '1'] +10:07:49 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '124'] +10:07:49 延续时间124tick--:添加音符[0.3, 0.25833333333333336] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=81', '9'] +10:07:49 延续时间9tick--:添加音符[0.3, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=84', '1'] +10:07:49 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '143'] +10:07:49 延续时间143tick--:添加音符[0.9, 0.29791666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=90', '9'] +10:07:49 延续时间9tick--:添加音符[0.75, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=86', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=97', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=82', '3'] +10:07:49 延续时间3tick--:添加音符[0.9, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '142'] +10:07:49 延续时间142tick--:添加音符[0.3, 0.29583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=79', '5'] +10:07:49 延续时间5tick--:添加音符[0.3, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=103', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=95', '1'] +10:07:49 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '140'] +10:07:49 延续时间140tick--:添加音符[0.15, 0.2916666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.3, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=81', '4'] +10:07:49 延续时间4tick--:添加音符[0.15, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=87', '1'] +10:07:49 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=105', '6'] +10:07:49 延续时间6tick--:添加音符[1.8, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=95', '3'] +10:07:49 延续时间3tick--:添加音符[0.9, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=98', '138'] +10:07:49 延续时间138tick--:添加音符[2.4, 0.2875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=83', '12'] +10:07:49 延续时间12tick--:添加音符[1.2, 0.025] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '172'] +10:07:49 延续时间172tick--:添加音符[0.3, 0.35833333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[0.15, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=83', '0'] +10:07:49 延续时间0tick--:添加音符[0.11, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=82', '0'] +10:07:49 延续时间0tick--:添加音符[0.22, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[0.11, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=104', '4'] +10:07:49 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=86', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=90', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=98', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=87', '102'] +10:07:49 延续时间102tick--:添加音符[0.44, 0.2125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '156'] +10:07:49 延续时间156tick--:添加音符[2.0, 0.325] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '3'] +10:07:49 延续时间3tick--:添加音符[1.0, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '107'] +10:07:49 延续时间107tick--:添加音符[1.8, 0.22291666666666668] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '11'] +10:07:49 延续时间11tick--:添加音符[1.8, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=90', '5'] +10:07:49 延续时间5tick--:添加音符[0.9, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '169'] +10:07:49 延续时间169tick--:添加音符[1.33, 0.35208333333333336] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=103', '2'] +10:07:49 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '2'] +10:07:49 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=99', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=101', '1'] +10:07:49 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[0.22, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=75', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '54'] +10:07:49 延续时间54tick--:添加音符[0.28, 0.1125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=87', '11'] +10:07:49 延续时间11tick--:添加音符[0.28, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '142'] +10:07:49 延续时间142tick--:添加音符[0.84, 0.29583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=87', '6'] +10:07:49 延续时间6tick--:添加音符[0.84, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=76', '6'] +10:07:49 延续时间6tick--:添加音符[1.0, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=80', '19'] +10:07:49 延续时间19tick--:添加音符[0.42, 0.03958333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=99', '128'] +10:07:49 延续时间128tick--:添加音符[0.9, 0.26666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '102'] +10:07:49 延续时间102tick--:添加音符[0.14, 0.2125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=60', '11'] +10:07:49 延续时间11tick--:添加音符[0.14, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=70', '1'] +10:07:49 延续时间1tick--:添加音符[0.125, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '11'] +10:07:49 延续时间11tick--:添加音符[0.125, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=76', '135'] +10:07:49 延续时间135tick--:添加音符[0.25, 0.28125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=85', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=93', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.14, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.42, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +10:07:49 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[1.7, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '207'] +10:07:49 延续时间207tick--:添加音符[1.5, 0.43125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.25, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=82', '3'] +10:07:49 延续时间3tick--:添加音符[1.5, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=82', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=58', '1'] +10:07:49 延续时间1tick--:添加音符[0.25, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '111'] +10:07:49 延续时间111tick--:添加音符[0.25, 0.23125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=73', '11'] +10:07:49 延续时间11tick--:添加音符[0.25, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=76', '2'] +10:07:49 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=93', '3'] +10:07:49 延续时间3tick--:添加音符[1.7, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=80', '1'] +10:07:49 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=76', '4'] +10:07:49 延续时间4tick--:添加音符[1.33, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '171'] +10:07:49 延续时间171tick--:添加音符[1.2, 0.35625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=98', '10'] +10:07:49 延续时间10tick--:添加音符[1.8, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=98', '0'] +10:07:49 延续时间0tick--:添加音符[0.9, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=87', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=78', '1'] +10:07:49 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '150'] +10:07:49 延续时间150tick--:添加音符[1.2, 0.3125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=81', '4'] +10:07:49 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=67', '0'] +10:07:49 延续时间0tick--:添加音符[0.37, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=98', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=85', '1'] +10:07:49 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=80', '2'] +10:07:49 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.37, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '130'] +10:07:49 延续时间130tick--:添加音符[0.6, 0.2708333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=80', '4'] +10:07:49 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=87', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=75', '1'] +10:07:49 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '118'] +10:07:49 延续时间118tick--:添加音符[1.2, 0.24583333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=103', '5'] +10:07:49 延续时间5tick--:添加音符[2.4, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=76', '1'] +10:07:49 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '159'] +10:07:49 延续时间159tick--:添加音符[0.25, 0.33125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '10'] +10:07:49 延续时间10tick--:添加音符[0.9, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=93', '28'] +10:07:49 延续时间28tick--:添加音符[0.8, 0.058333333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=91', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=78', '2'] +10:07:49 延续时间2tick--:添加音符[0.4, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '161'] +10:07:49 延续时间161tick--:添加音符[2.24, 0.33541666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.4, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=88', '3'] +10:07:49 延续时间3tick--:添加音符[2.24, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=78', '2'] +10:07:49 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=87', '0'] +10:07:49 延续时间0tick--:添加音符[0.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=84', '1'] +10:07:49 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=72', '3'] +10:07:49 延续时间3tick--:添加音符[0.4, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=41', '20'] +10:07:49 延续时间20tick--:添加音符[1.8, 0.041666666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '171'] +10:07:49 延续时间171tick--:添加音符[0.4, 0.35625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=86', '4'] +10:07:49 延续时间4tick--:添加音符[0.6, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=75', '0'] +10:07:49 延续时间0tick--:添加音符[0.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=93', '0'] +10:07:49 延续时间0tick--:添加音符[0.9, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=84', '1'] +10:07:49 延续时间1tick--:添加音符[0.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=105', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '156'] +10:07:49 延续时间156tick--:添加音符[0.4, 0.325] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=104', '10'] +10:07:49 延续时间10tick--:添加音符[2.0, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=97', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=90', '0'] +10:07:49 延续时间0tick--:添加音符[0.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=101', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=84', '1'] +10:07:49 延续时间1tick--:添加音符[0.2, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '134'] +10:07:49 延续时间134tick--:添加音符[0.2, 0.2791666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=79', '5'] +10:07:49 延续时间5tick--:添加音符[0.2, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=77', '2'] +10:07:49 延续时间2tick--:添加音符[0.1, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.1, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '123'] +10:07:49 延续时间123tick--:添加音符[0.6, 0.25625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=88', '11'] +10:07:49 延续时间11tick--:添加音符[0.6, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=68', '0'] +10:07:49 延续时间0tick--:添加音符[0.17, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=93', '0'] +10:07:49 延续时间0tick--:添加音符[0.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=90', '1'] +10:07:49 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[0.17, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=76', '120'] +10:07:49 延续时间120tick--:添加音符[0.14, 0.25] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '180'] +10:07:49 延续时间180tick--:添加音符[0.14, 0.375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=114', '2'] +10:07:49 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=91', '1'] +10:07:49 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=93', '1'] +10:07:49 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=92', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=95', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.33, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '12'] +10:07:49 延续时间12tick--:添加音符[0.8, 0.025] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '161'] +10:07:49 延续时间161tick--:添加音符[1.12, 0.33541666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=85', '8'] +10:07:49 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=104', '2'] +10:07:49 延续时间2tick--:添加音符[0.75, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=97', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '120'] +10:07:49 延续时间120tick--:添加音符[0.28, 0.25] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=77', '4'] +10:07:49 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=70', '39'] +10:07:49 延续时间39tick--:添加音符[0.42, 0.08125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '126'] +10:07:49 延续时间126tick--:添加音符[0.75, 0.2625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=113', '4'] +10:07:49 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=92', '1'] +10:07:49 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=88', '1'] +10:07:49 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=75', '2'] +10:07:49 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=87', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '137'] +10:07:49 延续时间137tick--:添加音符[0.14, 0.28541666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=65', '9'] +10:07:49 延续时间9tick--:添加音符[0.14, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '152'] +10:07:49 延续时间152tick--:添加音符[0.28, 0.31666666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=112', '6'] +10:07:49 延续时间6tick--:添加音符[1.7, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=101', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '5'] +10:07:49 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '46'] +10:07:49 延续时间46tick--:添加音符[1.12, 0.09583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '4'] +10:07:49 延续时间4tick--:添加音符[0.14, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '185'] +10:07:49 延续时间185tick--:添加音符[1.0, 0.3854166666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=96', '4'] +10:07:49 延续时间4tick--:添加音符[0.7, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=80', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=85', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=88', '146'] +10:07:49 延续时间146tick--:添加音符[0.42, 0.30416666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '148'] +10:07:49 延续时间148tick--:添加音符[0.7, 0.30833333333333335] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=95', '6'] +10:07:49 延续时间6tick--:添加音符[0.7, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=98', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=109', '160'] +10:07:49 延续时间160tick--:添加音符[0.56, 0.3333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '169'] +10:07:49 延续时间169tick--:添加音符[0.7, 0.35208333333333336] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=101', '5'] +10:07:49 延续时间5tick--:添加音符[0.7, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=104', '2'] +10:07:49 延续时间2tick--:添加音符[1.4, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=91', '3'] +10:07:49 延续时间3tick--:添加音符[1.0, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=86', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '112'] +10:07:49 延续时间112tick--:添加音符[0.42, 0.23333333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=87', '11'] +10:07:49 延续时间11tick--:添加音符[0.42, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=110', '191'] +10:07:49 延续时间191tick--:添加音符[1.5, 0.39791666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=95', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=69', '183'] +10:07:49 延续时间183tick--:添加音符[0.19, 0.38125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=76', '2'] +10:07:49 延续时间2tick--:添加音符[0.094, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '174'] +10:07:49 延续时间174tick--:添加音符[0.19, 0.3625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=89', '4'] +10:07:49 延续时间4tick--:添加音符[0.75, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=69', '2'] +10:07:49 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=87', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.4, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '5'] +10:07:49 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[0.42, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=83', '128'] +10:07:49 延续时间128tick--:添加音符[0.56, 0.26666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '140'] +10:07:49 延续时间140tick--:添加音符[0.19, 0.2916666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=56', '10'] +10:07:49 延续时间10tick--:添加音符[0.19, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '190'] +10:07:49 延续时间190tick--:添加音符[0.75, 0.3958333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=81', '10'] +10:07:49 延续时间10tick--:添加音符[0.75, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=90', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '304'] +10:07:49 延续时间304tick--:添加音符[0.56, 0.6333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=56', '7'] +10:07:49 延续时间7tick--:添加音符[0.56, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '216'] +10:07:49 延续时间216tick--:添加音符[0.19, 0.45] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=36', '8'] +10:07:49 延续时间8tick--:添加音符[0.19, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '145'] +10:07:49 延续时间145tick--:添加音符[0.19, 0.3020833333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.75, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=39', '1'] +10:07:49 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '64', 'velocity=61', '4'] +10:07:49 延续时间4tick--:添加音符[0.94, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=42', '1'] +10:07:49 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '11'] +10:07:49 延续时间11tick--:添加音符[1.0, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '46'] +10:07:49 延续时间46tick--:添加音符[0.094, 0.09583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=37', '1161'] +10:07:49 延续时间1161tick--:添加音符[1.5, 2.41875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '14'] +10:07:49 延续时间14tick--:添加音符[0.19, 0.029166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '64', 'velocity=0', '4'] +10:07:49 延续时间4tick--:添加音符[0.94, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=37', '4'] +10:07:49 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=41', '30'] +10:07:49 延续时间30tick--:添加音符[2.24, 0.0625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=46', '6'] +10:07:49 延续时间6tick--:添加音符[3.0, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=51', '286'] +10:07:49 延续时间286tick--:添加音符[4.5, 0.5958333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '321'] +10:07:49 延续时间321tick--:添加音符[4.5, 0.66875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=44', '9'] +10:07:49 延续时间9tick--:添加音符[4.5, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=80', '35'] +10:07:49 延续时间35tick--:添加音符[4.0, 0.07291666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '165'] +10:07:49 延续时间165tick--:添加音符[4.5, 0.34375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=83', '5'] +10:07:49 延续时间5tick--:添加音符[4.5, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=91', '153'] +10:07:49 延续时间153tick--:添加音符[6.0, 0.31875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=57', '31'] +10:07:49 延续时间31tick--:添加音符[1.33, 0.06458333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=34', '102'] +10:07:49 延续时间102tick--:添加音符[1.7, 0.2125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '16'] +10:07:49 延续时间16tick--:添加音符[2.24, 0.03333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=44', '11'] +10:07:49 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '28'] +10:07:49 延续时间28tick--:添加音符[4.0, 0.058333333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=70', '6'] +10:07:49 延续时间6tick--:添加音符[4.0, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=66', '5'] +10:07:49 延续时间5tick--:添加音符[5.34, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '303'] +10:07:49 延续时间303tick--:添加音符[4.5, 0.63125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=59', '11'] +10:07:49 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=64', '0'] +10:07:49 延续时间0tick--:添加音符[3.36, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '327'] +10:07:49 延续时间327tick--:添加音符[4.0, 0.68125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=60', '6'] +10:07:49 延续时间6tick--:添加音符[4.0, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=35', '454'] +10:07:49 延续时间454tick--:添加音符[1.2, 0.9458333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '16'] +10:07:49 延续时间16tick--:添加音符[1.5, 0.03333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=47', '11'] +10:07:49 延续时间11tick--:添加音符[1.5, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[1.7, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[1.8, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[1.33, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '4'] +10:07:49 延续时间4tick--:添加音符[5.34, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '23'] +10:07:49 延续时间23tick--:添加音符[6.0, 0.04791666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '23'] +10:07:49 延续时间23tick--:添加音符[3.36, 0.04791666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=45', '3'] +10:07:49 延续时间3tick--:添加音符[1.8, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '5'] +10:07:49 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=55', '51'] +10:07:49 延续时间51tick--:添加音符[3.0, 0.10625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=47', '5'] +10:07:49 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '21'] +10:07:49 延续时间21tick--:添加音符[4.0, 0.04375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=64', '6'] +10:07:49 延续时间6tick--:添加音符[4.0, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=70', '52'] +10:07:49 延续时间52tick--:添加音符[6.0, 0.10833333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=66', '300'] +10:07:49 延续时间300tick--:添加音符[3.56, 0.625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '318'] +10:07:49 延续时间318tick--:添加音符[3.0, 0.6625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=54', '5'] +10:07:49 延续时间5tick--:添加音符[3.0, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '141'] +10:07:49 延续时间141tick--:添加音符[4.5, 0.29375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=69', '35'] +10:07:49 延续时间35tick--:添加音符[3.36, 0.07291666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '141'] +10:07:49 延续时间141tick--:添加音符[3.56, 0.29375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=63', '11'] +10:07:49 延续时间11tick--:添加音符[3.56, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=66', '159'] +10:07:49 延续时间159tick--:添加音符[4.76, 0.33125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '206'] +10:07:49 延续时间206tick--:添加音符[1.8, 0.42916666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=59', '2'] +10:07:49 延续时间2tick--:添加音符[4.5, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=60', '2'] +10:07:49 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=48', '2'] +10:07:49 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=40', '3'] +10:07:49 延续时间3tick--:添加音符[1.12, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=46', '1'] +10:07:49 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=51', '1'] +10:07:49 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '6'] +10:07:49 延续时间6tick--:添加音符[2.24, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '14'] +10:07:49 延续时间14tick--:添加音符[1.5, 0.029166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[6.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[4.76, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '276'] +10:07:49 延续时间276tick--:添加音符[4.0, 0.575] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=63', '9'] +10:07:49 延续时间9tick--:添加音符[4.0, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=59', '3'] +10:07:49 延续时间3tick--:添加音符[2.24, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '142'] +10:07:49 延续时间142tick--:添加音符[2.67, 0.29583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=68', '4'] +10:07:49 延续时间4tick--:添加音符[3.56, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=55', '1'] +10:07:49 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '233'] +10:07:49 延续时间233tick--:添加音符[3.36, 0.48541666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=60', '4'] +10:07:49 延续时间4tick--:添加音符[3.36, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '610'] +10:07:49 延续时间610tick--:添加音符[3.0, 1.2708333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '24'] +10:07:49 延续时间24tick--:添加音符[1.2, 0.05] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=42', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=39', '9'] +10:07:49 延续时间9tick--:添加音符[1.2, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=43', '38'] +10:07:49 延续时间38tick--:添加音符[1.5, 0.07916666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '5'] +10:07:49 延续时间5tick--:添加音符[1.8, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=37', '11'] +10:07:49 延续时间11tick--:添加音符[1.8, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '12'] +10:07:49 延续时间12tick--:添加音符[3.56, 0.025] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=49', '1'] +10:07:49 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=53', '4'] +10:07:49 延续时间4tick--:添加音符[3.0, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=58', '4'] +10:07:49 延续时间4tick--:添加音符[3.56, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[2.67, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[2.0, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.36, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '11'] +10:07:49 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[4.0, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '130'] +10:07:49 延续时间130tick--:添加音符[1.33, 0.2708333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '31'] +10:07:49 延续时间31tick--:添加音符[3.56, 0.06458333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '161'] +10:07:49 延续时间161tick--:添加音符[3.0, 0.33541666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=59', '7'] +10:07:49 延续时间7tick--:添加音符[3.0, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=77', '150'] +10:07:49 延续时间150tick--:添加音符[3.36, 0.3125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=62', '1'] +10:07:49 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '188'] +10:07:49 延续时间188tick--:添加音符[2.4, 0.39166666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=72', '5'] +10:07:49 延续时间5tick--:添加音符[2.4, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=60', '1'] +10:07:49 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=72', '0'] +10:07:49 延续时间0tick--:添加音符[3.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '147'] +10:07:49 延续时间147tick--:添加音符[2.4, 0.30625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=80', '9'] +10:07:49 延续时间9tick--:添加音符[2.4, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=74', '1'] +10:07:49 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=62', '0'] +10:07:49 延续时间0tick--:添加音符[3.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '152'] +10:07:49 延续时间152tick--:添加音符[3.56, 0.31666666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=76', '6'] +10:07:49 延续时间6tick--:添加音符[3.56, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=91', '133'] +10:07:49 延续时间133tick--:添加音符[4.76, 0.27708333333333335] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=44', '156'] +10:07:49 延续时间156tick--:添加音符[0.8, 0.325] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '50'] +10:07:49 延续时间50tick--:添加音符[1.2, 0.10416666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=48', '6'] +10:07:49 延续时间6tick--:添加音符[1.2, 0.0125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '17'] +10:07:49 延续时间17tick--:添加音符[2.67, 0.035416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=73', '5'] +10:07:49 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=57', '1'] +10:07:49 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=72', '0'] +10:07:49 延续时间0tick--:添加音符[2.67, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=75', '3'] +10:07:49 延续时间3tick--:添加音符[4.5, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '237'] +10:07:49 延续时间237tick--:添加音符[0.8, 0.49375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.67, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[4.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=77', '8'] +10:07:49 延续时间8tick--:添加音符[1.6, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=83', '1'] +10:07:49 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=80', '1'] +10:07:49 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=63', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=59', '0'] +10:07:49 延续时间0tick--:添加音符[0.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=79', '2'] +10:07:49 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '188'] +10:07:49 延续时间188tick--:添加音符[3.56, 0.39166666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=96', '3'] +10:07:49 延续时间3tick--:添加音符[3.56, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=71', '0'] +10:07:49 延续时间0tick--:添加音符[0.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '180'] +10:07:49 延续时间180tick--:添加音符[0.4, 0.375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=97', '9'] +10:07:49 延续时间9tick--:添加音符[2.0, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=94', '1'] +10:07:49 延续时间1tick--:添加音符[4.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=87', '0'] +10:07:49 延续时间0tick--:添加音符[2.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=80', '1'] +10:07:49 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=73', '0'] +10:07:49 延续时间0tick--:添加音符[0.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=80', '0'] +10:07:49 延续时间0tick--:添加音符[3.17, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '189'] +10:07:49 延续时间189tick--:添加音符[1.0, 0.39375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[1.8, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=106', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=101', '0'] +10:07:49 延续时间0tick--:添加音符[1.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=97', '1'] +10:07:49 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=89', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '58'] +10:07:49 延续时间58tick--:添加音符[0.2, 0.12083333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '84'] +10:07:49 延续时间84tick--:添加音符[4.5, 0.175] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=97', '92'] +10:07:49 延续时间92tick--:添加音符[0.6, 0.19166666666666668] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=90', '2'] +10:07:49 延续时间2tick--:添加音符[0.2, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=89', '2'] +10:07:49 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=79', '4'] +10:07:49 延续时间4tick--:添加音符[0.4, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '215'] +10:07:49 延续时间215tick--:添加音符[4.76, 0.4479166666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.36, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=104', '11'] +10:07:49 延续时间11tick--:添加音符[3.36, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=109', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=103', '1'] +10:07:49 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=103', '3'] +10:07:49 延续时间3tick--:添加音符[0.28, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '15'] +10:07:49 延续时间15tick--:添加音符[1.5, 0.03125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '5'] +10:07:49 延续时间5tick--:添加音符[1.2, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[0.4, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[4.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.17, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '5'] +10:07:49 延续时间5tick--:添加音符[0.8, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[1.6, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '199'] +10:07:49 延续时间199tick--:添加音符[2.24, 0.41458333333333336] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=95', '2'] +10:07:49 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=80', '3'] +10:07:49 延续时间3tick--:添加音符[2.24, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=86', '2'] +10:07:49 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '124'] +10:07:49 延续时间124tick--:添加音符[0.28, 0.25833333333333336] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=88', '4'] +10:07:49 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=85', '0'] +10:07:49 延续时间0tick--:添加音符[0.42, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=111', '152'] +10:07:49 延续时间152tick--:添加音符[0.75, 0.31666666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=101', '1'] +10:07:49 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=102', '4'] +10:07:49 延续时间4tick--:添加音符[1.12, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=99', '3'] +10:07:49 延续时间3tick--:添加音符[1.0, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '128'] +10:07:49 延续时间128tick--:添加音符[0.14, 0.26666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '33', 'velocity=70', '10'] +10:07:49 延续时间10tick--:添加音符[0.16, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=76', '1'] +10:07:49 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '135'] +10:07:49 延续时间135tick--:添加音符[1.8, 0.28125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '23'] +10:07:49 延续时间23tick--:添加音符[0.14, 0.04791666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=106', '4'] +10:07:49 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '1'] +10:07:49 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=83', '1'] +10:07:49 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=99', '4'] +10:07:49 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '9'] +10:07:49 延续时间9tick--:添加音符[2.24, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '2'] +10:07:49 延续时间2tick--:添加音符[0.56, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[3.36, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '33', 'velocity=0', '13'] +10:07:49 延续时间13tick--:添加音符[0.16, 0.027083333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '222'] +10:07:49 延续时间222tick--:添加音符[1.0, 0.4625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '9'] +10:07:49 延续时间9tick--:添加音符[1.12, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=94', '0'] +10:07:49 延续时间0tick--:添加音符[0.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=90', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '128'] +10:07:49 延续时间128tick--:添加音符[0.28, 0.26666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=85', '7'] +10:07:49 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=81', '2'] +10:07:49 延续时间2tick--:添加音符[0.84, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=89', '2'] +10:07:49 延续时间2tick--:添加音符[0.42, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '165'] +10:07:49 延续时间165tick--:添加音符[0.7, 0.34375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=108', '7'] +10:07:49 延续时间7tick--:添加音符[0.7, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '2'] +10:07:49 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=88', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=87', '1'] +10:07:49 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=81', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '303'] +10:07:49 延续时间303tick--:添加音符[0.7, 0.63125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.14, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.12, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=108', '3'] +10:07:49 延续时间3tick--:添加音符[1.4, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=103', '1'] +10:07:49 延续时间1tick--:添加音符[0.7, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=99', '1'] +10:07:49 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=91', '1'] +10:07:49 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '2'] +10:07:49 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=85', '2'] +10:07:49 延续时间2tick--:添加音符[0.14, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '282'] +10:07:49 延续时间282tick--:添加音符[0.7, 0.5875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[0.84, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=98', '4'] +10:07:49 延续时间4tick--:添加音符[0.7, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=79', '2'] +10:07:49 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=61', '4'] +10:07:49 延续时间4tick--:添加音符[0.84, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=64', '156'] +10:07:49 延续时间156tick--:添加音符[0.094, 0.325] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=56', '0'] +10:07:49 延续时间0tick--:添加音符[0.19, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[0.28, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '24', 'velocity=0', '4'] +10:07:49 延续时间4tick--:添加音符[0.094, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '146'] +10:07:49 延续时间146tick--:添加音符[0.19, 0.30416666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '31'] +10:07:49 延续时间31tick--:添加音符[1.12, 0.06458333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=94', '9'] +10:07:49 延续时间9tick--:添加音符[1.12, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=108', '1'] +10:07:49 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=100', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=101', '2'] +10:07:49 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=98', '0'] +10:07:49 延续时间0tick--:添加音符[0.19, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '4'] +10:07:49 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.4, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.14, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '4'] +10:07:49 延续时间4tick--:添加音符[0.84, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.42, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.7, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '15'] +10:07:49 延续时间15tick--:添加音符[0.75, 0.03125] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=61', '226'] +10:07:49 延续时间226tick--:添加音符[0.28, 0.4708333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=100', '4'] +10:07:49 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=93', '0'] +10:07:49 延续时间0tick--:添加音符[4.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=77', '137'] +10:07:49 延续时间137tick--:添加音符[0.37, 0.28541666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '148'] +10:07:49 延续时间148tick--:添加音符[2.24, 0.30833333333333335] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[4.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=99', '9'] +10:07:49 延续时间9tick--:添加音符[4.5, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=106', '1'] +10:07:49 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=87', '0'] +10:07:49 延续时间0tick--:添加音符[0.44, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=99', '146'] +10:07:49 延续时间146tick--:添加音符[3.36, 0.30416666666666664] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=80', '1'] +10:07:49 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=95', '2'] +10:07:49 延续时间2tick--:添加音符[4.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '1'] +10:07:49 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '123'] +10:07:49 延续时间123tick--:添加音符[2.24, 0.25625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[4.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=99', '11'] +10:07:49 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=97', '0'] +10:07:49 延续时间0tick--:添加音符[4.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=105', '1'] +10:07:49 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=115', '145'] +10:07:49 延续时间145tick--:添加音符[6.0, 0.3020833333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=104', '0'] +10:07:49 延续时间0tick--:添加音符[3.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '212'] +10:07:49 延续时间212tick--:添加音符[0.28, 0.44166666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.36, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=110', '4'] +10:07:49 延续时间4tick--:添加音符[5.34, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.37, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=101', '1'] +10:07:49 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=104', '0'] +10:07:49 延续时间0tick--:添加音符[2.67, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.44, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.75, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.9, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[4.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[4.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=83', '3'] +10:07:49 延续时间3tick--:添加音符[0.14, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[6.0, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=108', '240'] +10:07:49 延续时间240tick--:添加音符[4.5, 0.5] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=100', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=84', '156'] +10:07:49 延续时间156tick--:添加音符[0.67, 0.325] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=90', '1'] +10:07:49 延续时间1tick--:添加音符[0.84, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=78', '0'] +10:07:49 延续时间0tick--:添加音符[0.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '141'] +10:07:49 延续时间141tick--:添加音符[5.34, 0.29375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '7'] +10:07:49 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.36, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=106', '4'] +10:07:49 延续时间4tick--:添加音符[5.34, 0.008333333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=92', '0'] +10:07:49 延续时间0tick--:添加音符[3.36, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=106', '1'] +10:07:49 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=111', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '295'] +10:07:49 延续时间295tick--:添加音符[2.24, 0.6145833333333334] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.67, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=87', '11'] +10:07:49 延续时间11tick--:添加音符[0.5, 0.022916666666666665] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=97', '0'] +10:07:49 延续时间0tick--:添加音符[2.24, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=90', '0'] +10:07:49 延续时间0tick--:添加音符[2.67, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=89', '154'] +10:07:49 延续时间154tick--:添加音符[0.15, 0.32083333333333336] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '3'] +10:07:49 延续时间3tick--:添加音符[2.24, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[5.34, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.84, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.14, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.28, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.36, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[4.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '8'] +10:07:49 延续时间8tick--:添加音符[0.15, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=111', '2'] +10:07:49 延续时间2tick--:添加音符[6.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=108', '1'] +10:07:49 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=101', '1'] +10:07:49 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=101', '0'] +10:07:49 延续时间0tick--:添加音符[3.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=91', '0'] +10:07:49 延续时间0tick--:添加音符[0.15, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '215'] +10:07:49 延续时间215tick--:添加音符[3.0, 0.4479166666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=91', '5'] +10:07:49 延续时间5tick--:添加音符[3.56, 0.010416666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=101', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=74', '2'] +10:07:49 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=86', '154'] +10:07:49 延续时间154tick--:添加音符[0.6, 0.32083333333333336] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=82', '2'] +10:07:49 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '129'] +10:07:49 延续时间129tick--:添加音符[1.8, 0.26875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[6.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=96', '10'] +10:07:49 延续时间10tick--:添加音符[2.4, 0.020833333333333332] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=99', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=94', '0'] +10:07:49 延续时间0tick--:添加音符[3.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=103', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '1'] +10:07:49 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=97', '162'] +10:07:49 延续时间162tick--:添加音符[3.36, 0.3375] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=90', '3'] +10:07:49 延续时间3tick--:添加音符[1.7, 0.00625] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=86', '0'] +10:07:49 延续时间0tick--:添加音符[1.0, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '138'] +10:07:49 延续时间138tick--:添加音符[0.9, 0.2875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=104', '8'] +10:07:49 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=102', '2'] +10:07:49 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=80', '0'] +10:07:49 延续时间0tick--:添加音符[0.9, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '129'] +10:07:49 延续时间129tick--:添加音符[2.4, 0.26875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=93', '9'] +10:07:49 延续时间9tick--:添加音符[2.4, 0.01875] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=111', '1'] +10:07:49 延续时间1tick--:添加音符[4.76, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '148'] +10:07:49 延续时间148tick--:添加音符[1.7, 0.30833333333333335] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.36, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[0.6, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.2, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[3.56, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +10:07:49 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.5, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[2.4, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:49 延续时间0tick--:添加音符[1.8, 1.0] +10:07:49 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.76, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.15, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=111', '26'] +10:07:50 延续时间26tick--:添加音符[4.5, 0.05416666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=84', '1'] +10:07:50 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=77', '0'] +10:07:50 延续时间0tick--:添加音符[0.11, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=96', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=101', '1'] +10:07:50 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '10'] +10:07:50 延续时间10tick--:添加音符[0.11, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=91', '103'] +10:07:50 延续时间103tick--:添加音符[0.44, 0.21458333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=90', '149'] +10:07:50 延续时间149tick--:添加音符[0.67, 0.3104166666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=108', '0'] +10:07:50 延续时间0tick--:添加音符[4.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=100', '2'] +10:07:50 延续时间2tick--:添加音符[0.9, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=108', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=92', '141'] +10:07:50 延续时间141tick--:添加音符[3.56, 0.29375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=94', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '173'] +10:07:50 延续时间173tick--:添加音符[2.0, 0.36041666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '7'] +10:07:50 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=103', '3'] +10:07:50 延续时间3tick--:添加音符[3.36, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=90', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=106', '0'] +10:07:50 延续时间0tick--:添加音符[1.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '1'] +10:07:50 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=93', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.44, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '16'] +10:07:50 延续时间16tick--:添加音符[0.22, 0.03333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[0.14, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=93', '66'] +10:07:50 延续时间66tick--:添加音符[0.33, 0.1375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=80', '2'] +10:07:50 延续时间2tick--:添加音符[0.17, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '155'] +10:07:50 延续时间155tick--:添加音符[1.7, 0.3229166666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[2.0, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=105', '3'] +10:07:50 延续时间3tick--:添加音符[0.42, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=99', '0'] +10:07:50 延续时间0tick--:添加音符[1.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=88', '1'] +10:07:50 延续时间1tick--:添加音符[0.21, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=91', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=87', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=100', '145'] +10:07:50 延续时间145tick--:添加音符[0.5, 0.3020833333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=92', '0'] +10:07:50 延续时间0tick--:添加音符[0.25, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '181'] +10:07:50 延续时间181tick--:添加音符[0.25, 0.3770833333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=83', '4'] +10:07:50 延续时间4tick--:添加音符[2.4, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=102', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=104', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=91', '0'] +10:07:50 延续时间0tick--:添加音符[0.25, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=96', '3'] +10:07:50 延续时间3tick--:添加音符[0.125, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=0', '4'] +10:07:50 延续时间4tick--:添加音符[0.21, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.17, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '2'] +10:07:50 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.33, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.42, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '177'] +10:07:50 延续时间177tick--:添加音符[1.8, 0.36875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=84', '7'] +10:07:50 延续时间7tick--:添加音符[2.4, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=96', '1'] +10:07:50 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=90', '1'] +10:07:50 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=85', '138'] +10:07:50 延续时间138tick--:添加音符[0.5, 0.2875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=108', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=104', '2'] +10:07:50 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '151'] +10:07:50 延续时间151tick--:添加音符[1.8, 0.3145833333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=101', '10'] +10:07:50 延续时间10tick--:添加音符[3.56, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=104', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=93', '1'] +10:07:50 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=82', '0'] +10:07:50 延续时间0tick--:添加音符[0.75, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '142'] +10:07:50 延续时间142tick--:添加音符[0.75, 0.29583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=86', '7'] +10:07:50 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=89', '3'] +10:07:50 延续时间3tick--:添加音符[3.56, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=91', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '128'] +10:07:50 延续时间128tick--:添加音符[0.25, 0.26666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=84', '6'] +10:07:50 延续时间6tick--:添加音符[0.5, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=67', '2'] +10:07:50 延续时间2tick--:添加音符[0.25, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=91', '3'] +10:07:50 延续时间3tick--:添加音符[3.56, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=91', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=94', '124'] +10:07:50 延续时间124tick--:添加音符[4.76, 0.25833333333333336] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '4'] +10:07:50 延续时间4tick--:添加音符[2.4, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=72', '5'] +10:07:50 延续时间5tick--:添加音符[2.4, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=58', '172'] +10:07:50 延续时间172tick--:添加音符[0.1, 0.35833333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=60', '3'] +10:07:50 延续时间3tick--:添加音符[0.2, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=0', '4'] +10:07:50 延续时间4tick--:添加音符[0.1, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[0.2, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '30'] +10:07:50 延续时间30tick--:添加音符[0.125, 0.0625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '5'] +10:07:50 延续时间5tick--:添加音符[1.7, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.25, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[4.76, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '10'] +10:07:50 延续时间10tick--:添加音符[0.75, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=74', '11'] +10:07:50 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=70', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=64', '2'] +10:07:50 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '200'] +10:07:50 延续时间200tick--:添加音符[2.24, 0.4166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=83', '6'] +10:07:50 延续时间6tick--:添加音符[2.67, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=65', '1'] +10:07:50 延续时间1tick--:添加音符[0.4, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=59', '1'] +10:07:50 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=81', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=74', '3'] +10:07:50 延续时间3tick--:添加音符[2.24, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '166'] +10:07:50 延续时间166tick--:添加音符[0.4, 0.3458333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=76', '10'] +10:07:50 延续时间10tick--:添加音符[0.4, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=89', '1'] +10:07:50 延续时间1tick--:添加音符[0.8, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=98', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=100', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '173'] +10:07:50 延续时间173tick--:添加音符[0.6, 0.36041666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=103', '4'] +10:07:50 延续时间4tick--:添加音符[0.8, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=89', '0'] +10:07:50 延续时间0tick--:添加音符[0.6, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=84', '0'] +10:07:50 延续时间0tick--:添加音符[2.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=96', '0'] +10:07:50 延续时间0tick--:添加音符[4.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=78', '2'] +10:07:50 延续时间2tick--:添加音符[3.17, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '177'] +10:07:50 延续时间177tick--:添加音符[0.4, 0.36875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=84', '6'] +10:07:50 延续时间6tick--:添加音符[0.4, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=92', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=105', '2'] +10:07:50 延续时间2tick--:添加音符[1.6, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=100', '1'] +10:07:50 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '221'] +10:07:50 延续时间221tick--:添加音符[0.4, 0.46041666666666664] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=98', '4'] +10:07:50 延续时间4tick--:添加音符[0.4, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=80', '0'] +10:07:50 延续时间0tick--:添加音符[0.2, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=77', '1'] +10:07:50 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.2, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.17, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.6, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '5'] +10:07:50 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '7'] +10:07:50 延续时间7tick--:添加音符[0.5, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=103', '1'] +10:07:50 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=103', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=111', '2'] +10:07:50 延续时间2tick--:添加音符[2.24, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=101', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=94', '1'] +10:07:50 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=86', '1'] +10:07:50 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '192'] +10:07:50 延续时间192tick--:添加音符[2.24, 0.4] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=100', '6'] +10:07:50 延续时间6tick--:添加音符[1.5, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=105', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '4'] +10:07:50 延续时间4tick--:添加音符[2.0, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=89', '139'] +10:07:50 延续时间139tick--:添加音符[0.42, 0.28958333333333336] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '143'] +10:07:50 延续时间143tick--:添加音符[1.5, 0.29791666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=108', '4'] +10:07:50 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=99', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=98', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '133'] +10:07:50 延续时间133tick--:添加音符[0.14, 0.27708333333333335] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '6'] +10:07:50 延续时间6tick--:添加音符[0.14, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '163'] +10:07:50 延续时间163tick--:添加音符[2.0, 0.33958333333333335] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[0.28, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=107', '3'] +10:07:50 延续时间3tick--:添加音符[3.36, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=101', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=108', '1'] +10:07:50 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '27'] +10:07:50 延续时间27tick--:添加音符[0.42, 0.05625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.14, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '4'] +10:07:50 延续时间4tick--:添加音符[4.5, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=91', '235'] +10:07:50 延续时间235tick--:添加音符[0.7, 0.4895833333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=85', '1'] +10:07:50 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=78', '4'] +10:07:50 延续时间4tick--:添加音符[1.0, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '106'] +10:07:50 延续时间106tick--:添加音符[0.28, 0.22083333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=78', '9'] +10:07:50 延续时间9tick--:添加音符[0.28, 0.01875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '159'] +10:07:50 延续时间159tick--:添加音符[0.7, 0.33125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=84', '4'] +10:07:50 延续时间4tick--:添加音符[0.42, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=96', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=87', '2'] +10:07:50 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=79', '152'] +10:07:50 延续时间152tick--:添加音符[0.56, 0.31666666666666665] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '157'] +10:07:50 延续时间157tick--:添加音符[0.7, 0.32708333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=102', '4'] +10:07:50 延续时间4tick--:添加音符[1.4, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=106', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '1'] +10:07:50 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=95', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '154'] +10:07:50 延续时间154tick--:添加音符[0.14, 0.32083333333333336] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '172'] +10:07:50 延续时间172tick--:添加音符[0.14, 0.35833333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '4'] +10:07:50 延续时间4tick--:添加音符[0.42, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=108', '3'] +10:07:50 延续时间3tick--:添加音符[0.7, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=77', '1'] +10:07:50 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '3'] +10:07:50 延续时间3tick--:添加音符[1.0, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=86', '0'] +10:07:50 延续时间0tick--:添加音符[0.14, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '388'] +10:07:50 延续时间388tick--:添加音符[0.28, 0.8083333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=91', '10'] +10:07:50 延续时间10tick--:添加音符[1.12, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=99', '0'] +10:07:50 延续时间0tick--:添加音符[1.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=105', '1'] +10:07:50 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=90', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=93', '1'] +10:07:50 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=100', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '49'] +10:07:50 延续时间49tick--:添加音符[2.0, 0.10208333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '6'] +10:07:50 延续时间6tick--:添加音符[0.14, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '2'] +10:07:50 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '6'] +10:07:50 延续时间6tick--:添加音符[0.56, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '92'] +10:07:50 延续时间92tick--:添加音符[0.75, 0.19166666666666668] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=98', '116'] +10:07:50 延续时间116tick--:添加音符[4.5, 0.24166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=98', '1'] +10:07:50 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '121'] +10:07:50 延续时间121tick--:添加音符[0.19, 0.2520833333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=82', '3'] +10:07:50 延续时间3tick--:添加音符[0.37, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=65', '2'] +10:07:50 延续时间2tick--:添加音符[0.19, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '164'] +10:07:50 延续时间164tick--:添加音符[2.24, 0.3416666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=88', '3'] +10:07:50 延续时间3tick--:添加音符[3.56, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=104', '1'] +10:07:50 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=85', '1'] +10:07:50 延续时间1tick--:添加音符[0.44, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=94', '2'] +10:07:50 延续时间2tick--:添加音符[4.5, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '16'] +10:07:50 延续时间16tick--:添加音符[1.12, 0.03333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=80', '126'] +10:07:50 延续时间126tick--:添加音符[0.56, 0.2625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=94', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=91', '5'] +10:07:50 延续时间5tick--:添加音符[4.0, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=88', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '114'] +10:07:50 延续时间114tick--:添加音符[0.44, 0.2375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '7'] +10:07:50 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=71', '4'] +10:07:50 延续时间4tick--:添加音符[0.44, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=87', '7'] +10:07:50 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=96', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=112', '131'] +10:07:50 延续时间131tick--:添加音符[6.0, 0.27291666666666664] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=105', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '181'] +10:07:50 延续时间181tick--:添加音符[1.5, 0.3770833333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '5'] +10:07:50 延续时间5tick--:添加音符[0.37, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[6.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.19, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '4'] +10:07:50 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=98', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=105', '1'] +10:07:50 延续时间1tick--:添加音符[5.34, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=84', '0'] +10:07:50 延续时间0tick--:添加音符[0.14, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=103', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '11'] +10:07:50 延续时间11tick--:添加音符[0.44, 0.022916666666666665] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '192'] +10:07:50 延续时间192tick--:添加音符[2.67, 0.4] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=93', '9'] +10:07:50 延续时间9tick--:添加音符[4.5, 0.01875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=86', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=82', '146'] +10:07:50 延续时间146tick--:添加音符[0.67, 0.30416666666666664] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=79', '1'] +10:07:50 延续时间1tick--:添加音符[0.56, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=86', '0'] +10:07:50 延续时间0tick--:添加音符[0.84, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '150'] +10:07:50 延续时间150tick--:添加音符[0.67, 0.3125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[5.34, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=95', '7'] +10:07:50 延续时间7tick--:添加音符[0.67, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=110', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=99', '0'] +10:07:50 延续时间0tick--:添加音符[5.34, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=98', '1'] +10:07:50 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=104', '2'] +10:07:50 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=88', '164'] +10:07:50 延续时间164tick--:添加音符[0.5, 0.3416666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '141'] +10:07:50 延续时间141tick--:添加音符[0.28, 0.29375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=87', '4'] +10:07:50 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=94', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=91', '2'] +10:07:50 延续时间2tick--:添加音符[2.67, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '117'] +10:07:50 延续时间117tick--:添加音符[0.14, 0.24375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=82', '11'] +10:07:50 延续时间11tick--:添加音符[0.14, 0.022916666666666665] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '225'] +10:07:50 延续时间225tick--:添加音符[2.24, 0.46875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=111', '1'] +10:07:50 延续时间1tick--:添加音符[6.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=107', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=107', '0'] +10:07:50 延续时间0tick--:添加音符[0.3, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.84, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=95', '0'] +10:07:50 延续时间0tick--:添加音符[0.15, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=103', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '94', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[5.34, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '4'] +10:07:50 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '16'] +10:07:50 延续时间16tick--:添加音符[0.14, 0.03333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '215'] +10:07:50 延续时间215tick--:添加音符[0.3, 0.4479166666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=70', '2'] +10:07:50 延续时间2tick--:添加音符[0.3, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=96', '2'] +10:07:50 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=83', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '149'] +10:07:50 延续时间149tick--:添加音符[0.3, 0.3104166666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=77', '8'] +10:07:50 延续时间8tick--:添加音符[0.3, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=87', '1'] +10:07:50 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '99'] +10:07:50 延续时间99tick--:添加音符[6.0, 0.20625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '23'] +10:07:50 延续时间23tick--:添加音符[3.0, 0.04791666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=96', '7'] +10:07:50 延续时间7tick--:添加音符[3.0, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=98', '0'] +10:07:50 延续时间0tick--:添加音符[1.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=98', '1'] +10:07:50 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=78', '9'] +10:07:50 延续时间9tick--:添加音符[0.9, 0.01875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '121'] +10:07:50 延续时间121tick--:添加音符[0.6, 0.2520833333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=80', '10'] +10:07:50 延续时间10tick--:添加音符[0.6, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=105', '1'] +10:07:50 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=102', '1'] +10:07:50 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=81', '1'] +10:07:50 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '141'] +10:07:50 延续时间141tick--:添加音符[1.8, 0.29375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=104', '4'] +10:07:50 延续时间4tick--:添加音符[3.56, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=100', '2'] +10:07:50 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=91', '129'] +10:07:50 延续时间129tick--:添加音符[2.4, 0.26875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=84', '0'] +10:07:50 延续时间0tick--:添加音符[0.11, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=108', '0'] +10:07:50 延续时间0tick--:添加音符[4.76, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=71', '1'] +10:07:50 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '10'] +10:07:50 延续时间10tick--:添加音符[0.11, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.2, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.3, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.6, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '19'] +10:07:50 延续时间19tick--:添加音符[0.15, 0.03958333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '23'] +10:07:50 延续时间23tick--:添加音符[0.22, 0.04791666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[4.76, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=111', '2'] +10:07:50 延续时间2tick--:添加音符[4.5, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=82', '2'] +10:07:50 延续时间2tick--:添加音符[0.22, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=94', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=100', '1'] +10:07:50 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=75', '1'] +10:07:50 延续时间1tick--:添加音符[0.11, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=88', '159'] +10:07:50 延续时间159tick--:添加音符[0.44, 0.33125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '118'] +10:07:50 延续时间118tick--:添加音符[2.67, 0.24583333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=98', '4'] +10:07:50 延续时间4tick--:添加音符[4.0, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=82', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=90', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=98', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=92', '141'] +10:07:50 延续时间141tick--:添加音符[3.56, 0.29375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=93', '2'] +10:07:50 延续时间2tick--:添加音符[1.8, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '136'] +10:07:50 延续时间136tick--:添加音符[2.4, 0.2833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '27', 'velocity=0', '31'] +10:07:50 延续时间31tick--:添加音符[0.11, 0.06458333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=96', '7'] +10:07:50 延续时间7tick--:添加音符[3.36, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=81', '2'] +10:07:50 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=98', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=95', '1'] +10:07:50 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=90', '0'] +10:07:50 延续时间0tick--:添加音符[0.14, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=84', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[4.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '51', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.44, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '39', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.22, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=95', '67'] +10:07:50 延续时间67tick--:添加音符[0.33, 0.13958333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=80', '5'] +10:07:50 延续时间5tick--:添加音符[0.17, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '143'] +10:07:50 延续时间143tick--:添加音符[1.7, 0.29791666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=84', '4'] +10:07:50 延续时间4tick--:添加音符[0.21, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=89', '1'] +10:07:50 延续时间1tick--:添加音符[1.7, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=89', '1'] +10:07:50 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=88', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=83', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '124'] +10:07:50 延续时间124tick--:添加音符[0.28, 0.25833333333333336] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=85', '5'] +10:07:50 延续时间5tick--:添加音符[0.28, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=74', '1'] +10:07:50 延续时间1tick--:添加音符[0.25, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=80', '2'] +10:07:50 延续时间2tick--:添加音符[0.5, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '207'] +10:07:50 延续时间207tick--:添加音符[0.25, 0.43125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '4'] +10:07:50 延续时间4tick--:添加音符[0.17, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '38', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.21, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.33, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.42, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.14, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=104', '1'] +10:07:50 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=88', '2'] +10:07:50 延续时间2tick--:添加音符[0.25, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=102', '1'] +10:07:50 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=88', '1'] +10:07:50 延续时间1tick--:添加音符[0.125, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=86', '0'] +10:07:50 延续时间0tick--:添加音符[2.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '4'] +10:07:50 延续时间4tick--:添加音符[0.5, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=45', '127'] +10:07:50 延续时间127tick--:添加音符[2.67, 0.26458333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '65'] +10:07:50 延续时间65tick--:添加音符[2.4, 0.13541666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[1.8, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=78', '1'] +10:07:50 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=82', '2'] +10:07:50 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=92', '0'] +10:07:50 延续时间0tick--:添加音符[1.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=82', '1'] +10:07:50 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '150'] +10:07:50 延续时间150tick--:添加音符[0.25, 0.3125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=85', '5'] +10:07:50 延续时间5tick--:添加音符[0.5, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=102', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=72', '1'] +10:07:50 延续时间1tick--:添加音符[0.25, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=98', '2'] +10:07:50 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '153'] +10:07:50 延续时间153tick--:添加音符[0.5, 0.31875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=87', '7'] +10:07:50 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=101', '2'] +10:07:50 延续时间2tick--:添加音符[3.56, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=81', '1'] +10:07:50 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=103', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=78', '2'] +10:07:50 延续时间2tick--:添加音符[0.6, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '149'] +10:07:50 延续时间149tick--:添加音符[0.25, 0.3104166666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=70', '3'] +10:07:50 延续时间3tick--:添加音符[0.25, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=76', '1'] +10:07:50 延续时间1tick--:添加音符[0.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=89', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '119'] +10:07:50 延续时间119tick--:添加音符[0.5, 0.24791666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=74', '8'] +10:07:50 延续时间8tick--:添加音符[0.5, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=98', '1'] +10:07:50 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=92', '1'] +10:07:50 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '143'] +10:07:50 延续时间143tick--:添加音符[2.4, 0.29791666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=93', '6'] +10:07:50 延续时间6tick--:添加音符[4.76, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=74', '3'] +10:07:50 延续时间3tick--:添加音符[2.4, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=59', '165'] +10:07:50 延续时间165tick--:添加音符[0.1, 0.34375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=52', '0'] +10:07:50 延续时间0tick--:添加音符[0.2, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '25', 'velocity=0', '11'] +10:07:50 延续时间11tick--:添加音符[0.1, 0.022916666666666665] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.2, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '41', 'velocity=0', '27'] +10:07:50 延续时间27tick--:添加音符[0.25, 0.05625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '92', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[4.76, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.75, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '29', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.125, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.6, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=71', '20'] +10:07:50 延续时间20tick--:添加音符[4.5, 0.041666666666666664] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=69', '3'] +10:07:50 延续时间3tick--:添加音符[2.67, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=61', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '177'] +10:07:50 延续时间177tick--:添加音符[2.24, 0.36875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=81', '8'] +10:07:50 延续时间8tick--:添加音符[0.6, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=66', '0'] +10:07:50 延续时间0tick--:添加音符[0.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=81', '1'] +10:07:50 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=79', '1'] +10:07:50 延续时间1tick--:添加音符[2.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=83', '204'] +10:07:50 延续时间204tick--:添加音符[0.8, 0.425] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=102', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=104', '1'] +10:07:50 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '169'] +10:07:50 延续时间169tick--:添加音符[0.8, 0.35208333333333336] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=90', '5'] +10:07:50 延续时间5tick--:添加音符[2.4, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=105', '1'] +10:07:50 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=84', '0'] +10:07:50 延续时间0tick--:添加音符[0.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=96', '0'] +10:07:50 延续时间0tick--:添加音符[4.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=102', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=87', '2'] +10:07:50 延续时间2tick--:添加音符[3.17, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '237'] +10:07:50 延续时间237tick--:添加音符[0.4, 0.49375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=80', '10'] +10:07:50 延续时间10tick--:添加音符[0.4, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=91', '1'] +10:07:50 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=93', '0'] +10:07:50 延续时间0tick--:添加音符[0.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '5'] +10:07:50 延续时间5tick--:添加音符[0.6, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '38'] +10:07:50 延续时间38tick--:添加音符[0.4, 0.07916666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=105', '12'] +10:07:50 延续时间12tick--:添加音符[0.8, 0.025] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=102', '0'] +10:07:50 延续时间0tick--:添加音符[0.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=94', '0'] +10:07:50 延续时间0tick--:添加音符[0.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=86', '0'] +10:07:50 延续时间0tick--:添加音符[0.2, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '219'] +10:07:50 延续时间219tick--:添加音符[4.5, 0.45625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '54'] +10:07:50 延续时间54tick--:添加音符[2.24, 0.1125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=95', '4'] +10:07:50 延续时间4tick--:添加音符[3.36, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=96', '0'] +10:07:50 延续时间0tick--:添加音符[4.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=102', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=96', '1'] +10:07:50 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=88', '0'] +10:07:50 延续时间0tick--:添加音符[0.14, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '37', 'velocity=0', '3'] +10:07:50 延续时间3tick--:添加音符[0.2, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.67, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=87', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '49', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.56, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[4.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '85', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.17, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '73', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[1.6, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '61', 'velocity=0', '11'] +10:07:50 延续时间11tick--:添加音符[0.8, 0.022916666666666665] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '53', 'velocity=0', '7'] +10:07:50 延续时间7tick--:添加音符[0.5, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '38'] +10:07:50 延续时间38tick--:添加音符[3.0, 0.07916666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '169'] +10:07:50 延续时间169tick--:添加音符[2.24, 0.35208333333333336] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=114', '5'] +10:07:50 延续时间5tick--:添加音符[1.5, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=99', '3'] +10:07:50 延续时间3tick--:添加音符[2.24, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=105', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '14'] +10:07:50 延续时间14tick--:添加音符[4.5, 0.029166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '115'] +10:07:50 延续时间115tick--:添加音符[0.28, 0.23958333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=83', '10'] +10:07:50 延续时间10tick--:添加音符[0.42, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=75', '2'] +10:07:50 延续时间2tick--:添加音符[0.28, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '134'] +10:07:50 延续时间134tick--:添加音符[1.5, 0.2791666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[0.28, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=108', '2'] +10:07:50 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=104', '1'] +10:07:50 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=105', '1'] +10:07:50 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=85', '1'] +10:07:50 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=100', '2'] +10:07:50 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '139'] +10:07:50 延续时间139tick--:添加音符[0.14, 0.28958333333333336] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=85', '11'] +10:07:50 延续时间11tick--:添加音符[0.14, 0.022916666666666665] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '150'] +10:07:50 延续时间150tick--:添加音符[0.28, 0.3125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[2.0, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=106', '3'] +10:07:50 延续时间3tick--:添加音符[3.36, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=99', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=93', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=107', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.42, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=104', '260'] +10:07:50 延续时间260tick--:添加音符[0.7, 0.5416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=93', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=84', '3'] +10:07:50 延续时间3tick--:添加音符[1.0, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '98'] +10:07:50 延续时间98tick--:添加音符[0.28, 0.20416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=82', '4'] +10:07:50 延续时间4tick--:添加音符[0.28, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '180'] +10:07:50 延续时间180tick--:添加音符[0.7, 0.375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[1.0, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=106', '3'] +10:07:50 延续时间3tick--:添加音符[1.12, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=106', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=94', '0'] +10:07:50 延续时间0tick--:添加音符[0.42, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=92', '2'] +10:07:50 延续时间2tick--:添加音符[1.0, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=90', '114'] +10:07:50 延续时间114tick--:添加音符[0.56, 0.2375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '211'] +10:07:50 延续时间211tick--:添加音符[0.28, 0.4395833333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=111', '4'] +10:07:50 延续时间4tick--:添加音符[1.4, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=114', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '4'] +10:07:50 延续时间4tick--:添加音符[0.14, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=102', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=95', '3'] +10:07:50 延续时间3tick--:添加音符[0.28, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=97', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=81', '1'] +10:07:50 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '50', 'velocity=0', '23'] +10:07:50 延续时间23tick--:添加音符[0.42, 0.04791666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '55', 'velocity=0', '27'] +10:07:50 延续时间27tick--:添加音符[0.56, 0.05625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '314'] +10:07:50 延续时间314tick--:添加音符[0.14, 0.6541666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.28, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=95', '5'] +10:07:50 延续时间5tick--:添加音符[1.12, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=95', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=80', '1'] +10:07:50 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=75', '1'] +10:07:50 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=95', '602'] +10:07:50 延续时间602tick--:添加音符[0.3, 1.2541666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=100', '1'] +10:07:50 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=82', '1'] +10:07:50 延续时间1tick--:添加音符[0.15, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '31', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.14, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.28, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[1.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '59', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '71', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.4, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=93', '87'] +10:07:50 延续时间87tick--:添加音符[1.12, 0.18125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=94', '183'] +10:07:50 延续时间183tick--:添加音符[1.0, 0.38125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '129'] +10:07:50 延续时间129tick--:添加音符[1.12, 0.26875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '9'] +10:07:50 延续时间9tick--:添加音符[1.12, 0.01875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=75', '10'] +10:07:50 延续时间10tick--:添加音符[0.6, 0.020833333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=74', '84'] +10:07:50 延续时间84tick--:添加音符[0.9, 0.175] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '81'] +10:07:50 延续时间81tick--:添加音符[1.12, 0.16875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=84', '12'] +10:07:50 延续时间12tick--:添加音符[1.12, 0.025] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=113', '39'] +10:07:50 延续时间39tick--:添加音符[1.5, 0.08125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=110', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=46', '34'] +10:07:50 延续时间34tick--:添加音符[2.67, 0.07083333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '7'] +10:07:50 延续时间7tick--:添加音符[2.67, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=93', '133'] +10:07:50 延续时间133tick--:添加音符[2.24, 0.27708333333333335] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=88', '153'] +10:07:50 延续时间153tick--:添加音符[2.0, 0.31875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '144'] +10:07:50 延续时间144tick--:添加音符[2.24, 0.3] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=90', '7'] +10:07:50 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=63', '183'] +10:07:50 延续时间183tick--:添加音符[0.17, 0.38125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=65', '31'] +10:07:50 延续时间31tick--:添加音符[0.33, 0.06458333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=89', '3'] +10:07:50 延续时间3tick--:添加音符[0.84, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.15, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.75, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '2'] +10:07:50 延续时间2tick--:添加音符[0.3, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '17'] +10:07:50 延续时间17tick--:添加音符[1.12, 0.035416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=89', '139'] +10:07:50 延续时间139tick--:添加音符[1.0, 0.28958333333333336] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '105'] +10:07:50 延续时间105tick--:添加音符[1.12, 0.21875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=67', '7'] +10:07:50 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=86', '43'] +10:07:50 延续时间43tick--:添加音符[0.67, 0.08958333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '58'] +10:07:50 延续时间58tick--:添加音符[1.0, 0.12083333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=65', '5'] +10:07:50 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=92', '76'] +10:07:50 延续时间76tick--:添加音符[1.33, 0.15833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=96', '24'] +10:07:50 延续时间24tick--:添加音符[3.36, 0.05] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=89', '3'] +10:07:50 延续时间3tick--:添加音符[1.7, 0.00625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=97', '153'] +10:07:50 延续时间153tick--:添加音符[2.24, 0.31875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=88', '145'] +10:07:50 延续时间145tick--:添加音符[2.0, 0.3020833333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '139'] +10:07:50 延续时间139tick--:添加音符[2.24, 0.28958333333333336] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=82', '6'] +10:07:50 延续时间6tick--:添加音符[2.24, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=61', '127'] +10:07:50 延续时间127tick--:添加音符[0.19, 0.26458333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=60', '54'] +10:07:50 延续时间54tick--:添加音符[0.37, 0.1125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=89', '1'] +10:07:50 延续时间1tick--:添加音符[0.9, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '8'] +10:07:50 延续时间8tick--:添加音符[3.36, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.12, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.7, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.33, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '2'] +10:07:50 延续时间2tick--:添加音符[0.17, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '6'] +10:07:50 延续时间6tick--:添加音符[0.84, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=76', '72'] +10:07:50 延续时间72tick--:添加音符[1.12, 0.15] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=81', '128'] +10:07:50 延续时间128tick--:添加音符[1.0, 0.26666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '115'] +10:07:50 延续时间115tick--:添加音符[1.12, 0.23958333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=73', '8'] +10:07:50 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=75', '62'] +10:07:50 延续时间62tick--:添加音符[0.75, 0.12916666666666668] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=94', '125'] +10:07:50 延续时间125tick--:添加音符[3.56, 0.2604166666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=93', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=87', '157'] +10:07:50 延续时间157tick--:添加音符[2.24, 0.32708333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=84', '168'] +10:07:50 延续时间168tick--:添加音符[2.0, 0.35] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '133'] +10:07:50 延续时间133tick--:添加音符[2.24, 0.27708333333333335] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=91', '5'] +10:07:50 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=54', '162'] +10:07:50 延续时间162tick--:添加音符[1.5, 0.3375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '17'] +10:07:50 延续时间17tick--:添加音符[2.0, 0.035416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=94', '8'] +10:07:50 延续时间8tick--:添加音符[3.36, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=90', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '237'] +10:07:50 延续时间237tick--:添加音符[3.56, 0.49375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '7'] +10:07:50 延续时间7tick--:添加音符[2.0, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=87', '4'] +10:07:50 延续时间4tick--:添加音符[3.56, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=63', '1'] +10:07:50 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '164'] +10:07:50 延续时间164tick--:添加音符[2.0, 0.3416666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=92', '5'] +10:07:50 延续时间5tick--:添加音符[3.36, 0.010416666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=76', '2'] +10:07:50 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '116'] +10:07:50 延续时间116tick--:添加音符[0.75, 0.24166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=62', '7'] +10:07:50 延续时间7tick--:添加音符[0.75, 0.014583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '78'] +10:07:50 延续时间78tick--:添加音符[1.5, 0.1625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=76', '4'] +10:07:50 延续时间4tick--:添加音符[3.0, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=65', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=71', '1'] +10:07:50 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '71'] +10:07:50 延续时间71tick--:添加音符[1.12, 0.14791666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=38', '6'] +10:07:50 延续时间6tick--:添加音符[1.12, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '64'] +10:07:50 延续时间64tick--:添加音符[2.24, 0.13333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=68', '4'] +10:07:50 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '141'] +10:07:50 延续时间141tick--:添加音符[1.8, 0.29375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=61', '4'] +10:07:50 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '142'] +10:07:50 延续时间142tick--:添加音符[1.5, 0.29583333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=63', '6'] +10:07:50 延续时间6tick--:添加音符[1.5, 0.0125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=58', '52'] +10:07:50 延续时间52tick--:添加音符[0.15, 0.10833333333333334] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.8, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.37, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.5, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[3.36, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[0.19, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '2'] +10:07:50 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '21'] +10:07:50 延续时间21tick--:添加音符[0.75, 0.04375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=89', '9'] +10:07:50 延续时间9tick--:添加音符[0.75, 0.01875] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=66', '1'] +10:07:50 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '32', 'velocity=0', '39'] +10:07:50 延续时间39tick--:添加音符[0.15, 0.08125] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=88', '83'] +10:07:50 延续时间83tick--:添加音符[1.12, 0.17291666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=86', '137'] +10:07:50 延续时间137tick--:添加音符[1.0, 0.28541666666666665] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '118'] +10:07:50 延续时间118tick--:添加音符[1.12, 0.24583333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=82', '8'] +10:07:50 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=70', '21'] +10:07:50 延续时间21tick--:添加音符[0.6, 0.04375] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=71', '64'] +10:07:50 延续时间64tick--:添加音符[0.9, 0.13333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=79', '64'] +10:07:50 延续时间64tick--:添加音符[1.2, 0.13333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=101', '53'] +10:07:50 延续时间53tick--:添加音符[1.5, 0.11041666666666666] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=108', '0'] +10:07:50 延续时间0tick--:添加音符[3.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=89', '160'] +10:07:50 延续时间160tick--:添加音符[2.24, 0.3333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=79', '149'] +10:07:50 延续时间149tick--:添加音符[2.0, 0.3104166666666667] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '126'] +10:07:50 延续时间126tick--:添加音符[2.24, 0.2625] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=76', '4'] +10:07:50 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=50', '118'] +10:07:50 延续时间118tick--:添加音符[0.17, 0.24583333333333332] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=78', '58'] +10:07:50 延续时间58tick--:添加音符[0.84, 0.12083333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[1.2, 0.0020833333333333333] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.6, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[2.24, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.9, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[1.0, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '0'] +10:07:50 延续时间0tick--:添加音符[0.75, 1.0] +10:07:50 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:50 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=87', '65'] +10:07:51 延续时间65tick--:添加音符[1.12, 0.13541666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=82', '142'] +10:07:51 延续时间142tick--:添加音符[1.0, 0.29583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '108'] +10:07:51 延续时间108tick--:添加音符[1.12, 0.225] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=68', '8'] +10:07:51 延续时间8tick--:添加音符[1.12, 0.016666666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=75', '27'] +10:07:51 延续时间27tick--:添加音符[0.67, 0.05625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '73'] +10:07:51 延续时间73tick--:添加音符[1.0, 0.15208333333333332] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=63', '5'] +10:07:51 延续时间5tick--:添加音符[1.0, 0.010416666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=89', '5'] +10:07:51 延续时间5tick--:添加音符[1.33, 0.010416666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=98', '88'] +10:07:51 延续时间88tick--:添加音符[3.36, 0.18333333333333332] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=92', '2'] +10:07:51 延续时间2tick--:添加音符[1.7, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=89', '157'] +10:07:51 延续时间157tick--:添加音符[2.24, 0.32708333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=84', '140'] +10:07:51 延续时间140tick--:添加音符[2.0, 0.2916666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '148'] +10:07:51 延续时间148tick--:添加音符[2.24, 0.30833333333333335] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=83', '4'] +10:07:51 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=59', '68'] +10:07:51 延续时间68tick--:添加音符[0.19, 0.14166666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '76'] +10:07:51 延续时间76tick--:添加音符[0.67, 0.15833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.24, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.33, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[3.36, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '62', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[0.84, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.7, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '34', 'velocity=0', '4'] +10:07:51 延续时间4tick--:添加音符[0.17, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=80', '7'] +10:07:51 延续时间7tick--:添加音符[0.9, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=59', '1'] +10:07:51 延续时间1tick--:添加音符[0.37, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=76', '77'] +10:07:51 延续时间77tick--:添加音符[1.12, 0.16041666666666668] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=83', '147'] +10:07:51 延续时间147tick--:添加音符[1.0, 0.30625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '121'] +10:07:51 延续时间121tick--:添加音符[1.12, 0.2520833333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=71', '7'] +10:07:51 延续时间7tick--:添加音符[1.12, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=63', '83'] +10:07:51 延续时间83tick--:添加音符[0.75, 0.17291666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=68', '97'] +10:07:51 延续时间97tick--:添加音符[1.5, 0.20208333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=82', '0'] +10:07:51 延续时间0tick--:添加音符[1.8, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=80', '0'] +10:07:51 延续时间0tick--:添加音符[3.56, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=72', '150'] +10:07:51 延续时间150tick--:添加音符[2.24, 0.3125] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '162'] +10:07:51 延续时间162tick--:添加音符[1.0, 0.3375] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=35', '7'] +10:07:51 延续时间7tick--:添加音符[1.0, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=57', '1'] +10:07:51 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '115'] +10:07:51 延续时间115tick--:添加音符[2.24, 0.23958333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=68', '11'] +10:07:51 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '197'] +10:07:51 延续时间197tick--:添加音符[1.12, 0.41041666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=79', '2'] +10:07:51 延续时间2tick--:添加音符[4.0, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=68', '1'] +10:07:51 延续时间1tick--:添加音符[2.4, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=49', '2'] +10:07:51 延续时间2tick--:添加音符[1.12, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '225'] +10:07:51 延续时间225tick--:添加音符[2.24, 0.46875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '8'] +10:07:51 延续时间8tick--:添加音符[3.56, 0.016666666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=73', '4'] +10:07:51 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=73', '0'] +10:07:51 延续时间0tick--:添加音符[3.56, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '180'] +10:07:51 延续时间180tick--:添加音符[2.0, 0.375] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=91', '6'] +10:07:51 延续时间6tick--:添加音符[3.36, 0.0125] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=77', '3'] +10:07:51 延续时间3tick--:添加音符[2.0, 0.00625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '191'] +10:07:51 延续时间191tick--:添加音符[1.5, 0.39791666666666664] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '7'] +10:07:51 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[3.56, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=64', '3'] +10:07:51 延续时间3tick--:添加音符[1.5, 0.00625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=84', '1'] +10:07:51 延续时间1tick--:添加音符[3.56, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=65', '1'] +10:07:51 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '203'] +10:07:51 延续时间203tick--:添加音符[2.0, 0.42291666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[3.36, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=87', '5'] +10:07:51 延续时间5tick--:添加音符[3.36, 0.010416666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=76', '2'] +10:07:51 延续时间2tick--:添加音符[2.0, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '36', 'velocity=0', '24'] +10:07:51 延续时间24tick--:添加音符[0.19, 0.05] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[0.37, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '63', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[0.9, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '161'] +10:07:51 延续时间161tick--:添加音符[1.8, 0.33541666666666664] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=78', '11'] +10:07:51 延续时间11tick--:添加音符[3.0, 0.022916666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=64', '0'] +10:07:51 延续时间0tick--:添加音符[1.8, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=58', '153'] +10:07:51 延续时间153tick--:添加音符[0.3, 0.31875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.5, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.8, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[3.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[3.56, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.4, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '65', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[1.12, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[4.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[3.36, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=62', '2'] +10:07:51 延续时间2tick--:添加音符[1.5, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=74', '70'] +10:07:51 延续时间70tick--:添加音符[2.24, 0.14583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=72', '154'] +10:07:51 延续时间154tick--:添加音符[2.0, 0.32083333333333336] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '129'] +10:07:51 延续时间129tick--:添加音符[2.24, 0.26875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=77', '5'] +10:07:51 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=44', '62'] +10:07:51 延续时间62tick--:添加音符[1.2, 0.12916666666666668] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=59', '44'] +10:07:51 延续时间44tick--:添加音符[1.8, 0.09166666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=76', '7'] +10:07:51 延续时间7tick--:添加音符[2.4, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=83', '46'] +10:07:51 延续时间46tick--:添加音符[3.0, 0.09583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=94', '1'] +10:07:51 延续时间1tick--:添加音符[6.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=74', '143'] +10:07:51 延续时间143tick--:添加音符[4.5, 0.29791666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=72', '143'] +10:07:51 延续时间143tick--:添加音符[4.0, 0.29791666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '133'] +10:07:51 延续时间133tick--:添加音符[4.5, 0.27708333333333335] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=51', '11'] +10:07:51 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=47', '151'] +10:07:51 延续时间151tick--:添加音符[0.33, 0.3145833333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '4'] +10:07:51 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.2, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[1.5, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[4.5, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.4, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[1.8, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[0.3, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[4.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=47', '2'] +10:07:51 延续时间2tick--:添加音符[0.67, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=57', '4'] +10:07:51 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '7'] +10:07:51 延续时间7tick--:添加音符[6.0, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=75', '60'] +10:07:51 延续时间60tick--:添加音符[2.24, 0.125] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=71', '140'] +10:07:51 延续时间140tick--:添加音符[2.0, 0.2916666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '138'] +10:07:51 延续时间138tick--:添加音符[2.24, 0.2875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=54', '5'] +10:07:51 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=56', '54'] +10:07:51 延续时间54tick--:添加音符[1.33, 0.1125] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '33'] +10:07:51 延续时间33tick--:添加音符[2.0, 0.06875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=49', '9'] +10:07:51 延续时间9tick--:添加音符[2.0, 0.01875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=67', '26'] +10:07:51 延续时间26tick--:添加音符[2.67, 0.05416666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=87', '44'] +10:07:51 延续时间44tick--:添加音符[3.36, 0.09166666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=65', '170'] +10:07:51 延续时间170tick--:添加音符[4.5, 0.3541666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=67', '120'] +10:07:51 延续时间120tick--:添加音符[4.0, 0.25] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '130'] +10:07:51 延续时间130tick--:添加音符[4.5, 0.2708333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=67', '9'] +10:07:51 延续时间9tick--:添加音符[4.5, 0.01875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=52', '127'] +10:07:51 延续时间127tick--:添加音符[0.37, 0.26458333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=53', '19'] +10:07:51 延续时间19tick--:添加音符[0.75, 0.03958333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '4'] +10:07:51 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.7, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[3.36, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '60', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[0.75, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[0.33, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[1.33, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '82', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.67, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '3'] +10:07:51 延续时间3tick--:添加音符[4.0, 0.00625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=72', '9'] +10:07:51 延续时间9tick--:添加音符[1.8, 0.01875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '8'] +10:07:51 延续时间8tick--:添加音符[0.67, 0.016666666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=75', '76'] +10:07:51 延续时间76tick--:添加音符[2.24, 0.15833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=71', '150'] +10:07:51 延续时间150tick--:添加音符[2.0, 0.3125] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '127'] +10:07:51 延续时间127tick--:添加音符[2.24, 0.26458333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=61', '12'] +10:07:51 延续时间12tick--:添加音符[2.24, 0.025] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=73', '65'] +10:07:51 延续时间65tick--:添加音符[1.5, 0.13541666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '46'] +10:07:51 延续时间46tick--:添加音符[2.24, 0.09583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=59', '11'] +10:07:51 延续时间11tick--:添加音符[2.24, 0.022916666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '28'] +10:07:51 延续时间28tick--:添加音符[1.8, 0.058333333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '99', 'velocity=79', '29'] +10:07:51 延续时间29tick--:添加音符[7.13, 0.06041666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=68', '162'] +10:07:51 延续时间162tick--:添加音符[4.5, 0.3375] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=61', '140'] +10:07:51 延续时间140tick--:添加音符[4.0, 0.2916666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '130'] +10:07:51 延续时间130tick--:添加音符[4.5, 0.2708333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=49', '11'] +10:07:51 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=48', '159'] +10:07:51 延续时间159tick--:添加音符[3.0, 0.33125] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '14'] +10:07:51 延续时间14tick--:添加音符[4.0, 0.029166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=82', '11'] +10:07:51 延续时间11tick--:添加音符[6.73, 0.022916666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=74', '0'] +10:07:51 延续时间0tick--:添加音符[4.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '99', 'velocity=0', '204'] +10:07:51 延续时间204tick--:添加音符[7.13, 0.425] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '99', 'velocity=72', '11'] +10:07:51 延续时间11tick--:添加音符[7.13, 0.022916666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '81'] +10:07:51 延续时间81tick--:添加音符[2.24, 0.16875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=40', '5'] +10:07:51 延续时间5tick--:添加音符[2.24, 0.010416666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '103'] +10:07:51 延续时间103tick--:添加音符[4.0, 0.21458333333333332] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[6.73, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=80', '7'] +10:07:51 延续时间7tick--:添加音符[6.73, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=64', '4'] +10:07:51 延续时间4tick--:添加音符[4.0, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '173'] +10:07:51 延续时间173tick--:添加音符[3.0, 0.36041666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=56', '7'] +10:07:51 延续时间7tick--:添加音符[3.0, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=72', '11'] +10:07:51 延续时间11tick--:添加音符[6.0, 0.022916666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=41', '17'] +10:07:51 延续时间17tick--:添加音符[3.56, 0.035416666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '126'] +10:07:51 延续时间126tick--:添加音符[4.0, 0.2625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[4.5, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=52', '7'] +10:07:51 延续时间7tick--:添加音符[4.0, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=61', '3'] +10:07:51 延续时间3tick--:添加音符[4.5, 0.00625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '144'] +10:07:51 延续时间144tick--:添加音符[3.56, 0.3] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=71', '10'] +10:07:51 延续时间10tick--:添加音符[3.56, 0.020833333333333332] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '128'] +10:07:51 延续时间128tick--:添加音符[3.0, 0.26666666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=61', '6'] +10:07:51 延续时间6tick--:添加音符[3.0, 0.0125] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=52', '159'] +10:07:51 延续时间159tick--:添加音符[0.3, 0.33125] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=44', '1'] +10:07:51 延续时间1tick--:添加音符[0.6, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '7'] +10:07:51 延续时间7tick--:添加音符[6.0, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[4.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '87', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[3.56, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[3.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[2.24, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '48', 'velocity=0', '3'] +10:07:51 延续时间3tick--:添加音符[0.37, 0.00625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=0', '5'] +10:07:51 延续时间5tick--:添加音符[6.73, 0.010416666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '4'] +10:07:51 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '99', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[7.13, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=63', '4'] +10:07:51 延续时间4tick--:添加音符[1.5, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=53', '173'] +10:07:51 延续时间173tick--:添加音符[2.24, 0.36041666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=51', '110'] +10:07:51 延续时间110tick--:添加音符[2.0, 0.22916666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '128'] +10:07:51 延续时间128tick--:添加音符[2.24, 0.26666666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=57', '4'] +10:07:51 延续时间4tick--:添加音符[2.24, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=45', '30'] +10:07:51 延续时间30tick--:添加音符[1.2, 0.0625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=46', '86'] +10:07:51 延续时间86tick--:添加音符[1.8, 0.17916666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=44', '48'] +10:07:51 延续时间48tick--:添加音符[2.4, 0.1] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=77', '26'] +10:07:51 延续时间26tick--:添加音符[6.0, 0.05416666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=62', '2'] +10:07:51 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=62', '152'] +10:07:51 延续时间152tick--:添加音符[4.5, 0.31666666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=62', '153'] +10:07:51 延续时间153tick--:添加音符[4.0, 0.31875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '144'] +10:07:51 延续时间144tick--:添加音符[4.5, 0.3] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=51', '9'] +10:07:51 延续时间9tick--:添加音符[4.5, 0.01875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '75', 'velocity=0', '4'] +10:07:51 延续时间4tick--:添加音符[1.8, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '68', 'velocity=0', '2'] +10:07:51 延续时间2tick--:添加音符[1.2, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '80', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.4, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.24, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.5, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '2'] +10:07:51 延续时间2tick--:添加音符[3.0, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[4.5, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '44', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[0.3, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[4.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '56', 'velocity=0', '9'] +10:07:51 延续时间9tick--:添加音符[0.6, 0.01875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=45', '3'] +10:07:51 延续时间3tick--:添加音符[0.67, 0.00625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=40', '17'] +10:07:51 延续时间17tick--:添加音符[0.33, 0.035416666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '3'] +10:07:51 延续时间3tick--:添加音符[6.0, 0.00625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=58', '4'] +10:07:51 延续时间4tick--:添加音符[1.7, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=69', '36'] +10:07:51 延续时间36tick--:添加音符[2.24, 0.075] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=69', '130'] +10:07:51 延续时间130tick--:添加音符[2.0, 0.2708333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '134'] +10:07:51 延续时间134tick--:添加音符[2.24, 0.2791666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=63', '7'] +10:07:51 延续时间7tick--:添加音符[2.24, 0.014583333333333334] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=57', '148'] +10:07:51 延续时间148tick--:添加音符[1.33, 0.30833333333333335] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=78', '30'] +10:07:51 延续时间30tick--:添加音符[6.73, 0.0625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=66', '4'] +10:07:51 延续时间4tick--:添加音符[3.36, 0.008333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=52', '160'] +10:07:51 延续时间160tick--:添加音符[4.5, 0.3333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=61', '137'] +10:07:51 延续时间137tick--:添加音符[4.0, 0.28541666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '128'] +10:07:51 延续时间128tick--:添加音符[4.5, 0.26666666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=50', '11'] +10:07:51 延续时间11tick--:添加音符[4.5, 0.022916666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.24, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '2'] +10:07:51 延续时间2tick--:添加音符[3.36, 0.004166666666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '89', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[4.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[4.5, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.7, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '77', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[2.0, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[6.73, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '70', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.33, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '58', 'velocity=0', '1'] +10:07:51 延续时间1tick--:添加音符[0.67, 0.0020833333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '46', 'velocity=0', '3'] +10:07:51 延续时间3tick--:添加音符[0.33, 0.00625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=44', '12'] +10:07:51 延续时间12tick--:添加音符[0.28, 0.025] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=44', '148'] +10:07:51 延续时间148tick--:添加音符[1.12, 0.30833333333333335] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=47', '174'] +10:07:51 延续时间174tick--:添加音符[1.5, 0.3625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=44', '149'] +10:07:51 延续时间149tick--:添加音符[1.7, 0.3104166666666667] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=52', '205'] +10:07:51 延续时间205tick--:添加音符[2.24, 0.4270833333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=57', '146'] +10:07:51 延续时间146tick--:添加音符[3.0, 0.30416666666666664] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=59', '190'] +10:07:51 延续时间190tick--:添加音符[3.36, 0.3958333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '197'] +10:07:51 延续时间197tick--:添加音符[2.24, 0.41041666666666665] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=50', '8'] +10:07:51 延续时间8tick--:添加音符[2.24, 0.016666666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=37', '243'] +10:07:51 延续时间243tick--:添加音符[4.5, 0.50625] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=36', '53'] +10:07:51 延续时间53tick--:添加音符[6.0, 0.11041666666666666] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=47', '40'] +10:07:51 延续时间40tick--:添加音符[6.73, 0.08333333333333333] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '103', 'velocity=55', '57'] +10:07:51 延续时间57tick--:添加音符[8.98, 0.11875] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '43', 'velocity=0', '2157'] +10:07:51 延续时间2157tick--:添加音符[0.28, 4.49375] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '67', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.12, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '72', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.5, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '74', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[1.7, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '79', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[2.24, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '84', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[3.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '86', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[3.36, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '91', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[4.5, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '96', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[6.0, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '98', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[6.73, 1.0] +10:07:51 音符on消息,处理后:['note_on', 'channel=0', '103', 'velocity=0', '0'] +10:07:51 延续时间0tick--:添加音符[8.98, 1.0] +10:07:51 元信息MetaMessage('end_of_track', time=1) +10:07:51 音符增加[[1.5, 0.8875], [0.75, 0.004166666666666667], [1.12, 0.0020833333333333333], [2.24, 0.7479166666666667], [1.8, 0.0020833333333333333], [2.24, 0.725], [1.8, 0.016666666666666666], [2.24, 0.004166666666666667], [1.8, 0.004166666666666667], [2.0, 0.31666666666666665], [1.7, 0.0020833333333333333], [1.8, 0.32708333333333334], [2.24, 1.0], [1.8, 0.0125], [2.24, 0.0020833333333333333], [3.0, 0.32083333333333336], [2.0, 0.4166666666666667], [2.67, 0.016666666666666666], [2.0, 0.00625], [0.56, 0.0020833333333333333], [1.0, 0.014583333333333334], [0.75, 0.029166666666666667], [3.0, 1.0], [1.7, 1.0], [1.12, 0.00625], [1.5, 0.016666666666666666], [1.8, 1.0], [2.24, 0.016666666666666666], [1.7, 0.18958333333333333], [2.24, 0.004166666666666667], [2.67, 0.78125], [2.67, 0.010416666666666666], [0.6, 1.5520833333333333], [3.0, 1.0], [1.8, 0.00625], [2.0, 0.010416666666666666], [2.24, 1.0], [2.67, 0.004166666666666667], [0.56, 0.0020833333333333333], [1.0, 1.0], [1.7, 1.0], [0.75, 0.23958333333333334], [1.8, 0.3375], [1.8, 0.0125], [0.84, 0.008333333333333333], [0.9, 0.325], [1.5, 0.3625], [1.2, 1.0], [1.7, 0.32083333333333336], [1.8, 0.3145833333333333], [1.8, 0.008333333333333333], [2.4, 0.3375], [2.24, 0.49583333333333335], [0.44, 0.00625], [0.22, 1.0], [1.33, 0.008333333333333333], [1.8, 0.014583333333333334], [0.9, 1.0], [0.6, 1.0], [0.75, 1.0], [1.5, 1.0], [1.7, 1.0], [1.2, 1.0], [0.84, 1.0], [3.0, 1.0], [2.4, 1.0], [0.22, 0.29583333333333334], [2.0, 0.5291666666666667], [1.8, 0.16458333333333333], [1.7, 0.2520833333333333], [0.56, 1.0], [1.4, 0.0020833333333333333], [0.84, 0.004166666666666667], [2.0, 0.004166666666666667], [2.24, 1.0], [1.8, 1.0], [1.33, 0.0020833333333333333], [0.44, 1.0], [0.37, 1.2416666666666667], [0.9, 0.004166666666666667], [0.75, 0.00625], [1.7, 0.11458333333333333], [0.84, 0.016666666666666666], [1.4, 1.0], [1.12, 0.6270833333333333], [1.12, 0.6791666666666667], [1.12, 0.014583333333333334], [0.75, 0.3375], [1.0, 0.008333333333333333], [0.75, 0.0020833333333333333], [1.12, 0.3416666666666667], [1.12, 0.016666666666666666], [1.5, 0.34375], [1.0, 0.40625], [0.28, 0.00625], [1.33, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.37, 0.10208333333333333], [0.9, 0.010416666666666666], [1.12, 0.010416666666666666], [0.75, 0.027083333333333334], [0.56, 0.016666666666666666], [1.12, 0.40625], [0.84, 1.0], [1.0, 0.6979166666666666], [1.33, 1.0], [1.33, 0.008333333333333333], [1.0, 0.008333333333333333], [1.5, 1.1020833333333333], [1.5, 0.01875], [1.12, 0.09375], [1.12, 0.010416666666666666], [1.0, 0.13333333333333333], [1.0, 0.022916666666666665], [0.84, 0.03333333333333333], [0.28, 0.0020833333333333333], [1.33, 0.00625], [0.75, 0.075], [0.44, 0.0020833333333333333], [0.3, 1.0], [0.6, 0.0020833333333333333], [0.6, 0.0125], [0.67, 1.8], [0.75, 0.32916666666666666], [0.75, 0.014583333333333334], [0.9, 0.39375], [1.5, 0.5520833333333334], [1.5, 0.016666666666666666], [2.24, 0.00625], [1.33, 1.0], [2.24, 0.008333333333333333], [1.5, 2.54375], [1.5, 0.020833333333333332], [1.7, 0.3729166666666667], [0.9, 0.5354166666666667], [1.8, 0.0125], [0.9, 0.008333333333333333], [0.37, 0.0020833333333333333], [1.0, 0.53125], [0.75, 1.0], [0.67, 0.0020833333333333333], [0.3, 1.0], [0.44, 0.0020833333333333333], [1.5, 1.0], [1.33, 1.0], [1.7, 0.00625], [1.12, 0.15208333333333332], [1.8, 0.7354166666666667], [1.8, 0.008333333333333333], [1.7, 0.36666666666666664], [1.5, 0.35833333333333334], [1.12, 0.31666666666666665], [0.28, 0.47708333333333336], [1.33, 0.004166666666666667], [0.84, 0.0125], [1.5, 1.0], [0.37, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.8, 1.0], [0.9, 0.027083333333333334], [1.33, 0.32083333333333336], [1.33, 0.008333333333333333], [1.33, 0.45416666666666666], [1.33, 0.0125], [1.33, 0.98125], [1.33, 0.010416666666666666], [1.7, 0.18125], [0.9, 0.17708333333333334], [1.5, 0.4375], [0.3, 1.0], [0.75, 0.00625], [1.33, 0.23333333333333334], [0.28, 1.0], [0.84, 0.010416666666666666], [1.5, 1.1354166666666667], [0.37, 0.01875], [1.5, 0.0020833333333333333], [0.42, 0.37083333333333335], [1.33, 1.0], [1.2, 0.3333333333333333], [0.44, 0.004166666666666667], [1.12, 0.3333333333333333], [0.44, 0.425], [0.67, 0.01875], [0.22, 1.0], [0.44, 0.004166666666666667], [0.56, 0.004166666666666667], [1.12, 0.0020833333333333333], [1.5, 0.0020833333333333333], [1.33, 1.0], [1.2, 1.0], [0.42, 1.0], [0.75, 0.0020833333333333333], [0.3, 0.0020833333333333333], [0.37, 0.0020833333333333333], [0.9, 0.014583333333333334], [1.12, 0.3125], [1.12, 0.375], [1.12, 0.016666666666666666], [0.67, 0.36666666666666664], [0.5, 0.008333333333333333], [0.67, 0.004166666666666667], [0.56, 0.7083333333333334], [0.56, 0.008333333333333333], [1.12, 0.2791666666666667], [1.12, 0.010416666666666666], [0.44, 0.4375], [1.2, 0.008333333333333333], [0.44, 0.00625], [0.25, 0.004166666666666667], [0.3, 0.004166666666666667], [0.67, 0.004166666666666667], [0.22, 0.0020833333333333333], [1.12, 1.0], [0.56, 0.0020833333333333333], [0.5, 1.0], [1.12, 0.058333333333333334], [1.0, 0.36666666666666664], [1.12, 0.3125], [1.12, 0.008333333333333333], [1.2, 0.35833333333333334], [1.2, 0.0125], [1.12, 0.3229166666666667], [1.12, 0.01875], [1.2, 0.3333333333333333], [1.2, 0.010416666666666666], [2.0, 0.3458333333333333], [1.0, 0.47708333333333336], [1.7, 0.0020833333333333333], [0.37, 0.004166666666666667], [1.0, 0.004166666666666667], [1.2, 0.2708333333333333], [1.12, 1.0], [0.25, 1.0], [2.0, 0.0020833333333333333], [0.3, 0.0020833333333333333], [1.8, 0.24791666666666667], [1.7, 0.35833333333333334], [1.7, 0.022916666666666665], [0.9, 0.3875], [1.0, 0.03333333333333333], [1.5, 0.475], [0.44, 0.2916666666666667], [1.7, 0.08125], [1.7, 0.01875], [1.5, 0.42916666666666664], [1.8, 0.014583333333333334], [1.5, 0.008333333333333333], [0.3, 0.0020833333333333333], [1.8, 0.00625], [0.37, 0.004166666666666667], [1.7, 0.008333333333333333], [1.7, 0.03958333333333333], [1.33, 0.0020833333333333333], [1.5, 0.3104166666666667], [1.5, 0.022916666666666665], [1.2, 0.0020833333333333333], [1.7, 0.32708333333333334], [1.33, 0.016666666666666666], [1.7, 0.00625], [1.33, 0.0020833333333333333], [1.5, 0.40625], [1.8, 1.0], [1.8, 0.0125], [1.5, 0.0020833333333333333], [1.7, 0.7541666666666667], [1.7, 0.022916666666666665], [1.5, 0.39375], [1.5, 0.008333333333333333], [1.7, 0.5666666666666667], [1.7, 0.016666666666666666], [0.28, 0.004166666666666667], [1.12, 0.0125], [0.75, 0.00625], [1.33, 0.3333333333333333], [1.5, 1.0], [1.2, 0.0020833333333333333], [1.8, 1.0], [0.9, 1.0], [0.3, 1.0], [0.7, 0.9479166666666666], [0.56, 0.004166666666666667], [1.5, 0.8041666666666667], [1.7, 0.33958333333333335], [1.7, 0.01875], [0.19, 0.5375], [1.12, 0.004166666666666667], [1.8, 0.0020833333333333333], [1.12, 0.00625], [0.28, 0.03958333333333333], [0.75, 1.0], [1.5, 0.010416666666666666], [1.7, 0.008333333333333333], [0.7, 0.0125], [0.56, 0.016666666666666666], [0.56, 0.9895833333333334], [1.8, 0.3541666666666667], [1.8, 0.0125], [1.12, 0.004166666666666667], [1.12, 0.010416666666666666], [0.75, 0.0020833333333333333], [0.19, 0.08958333333333333], [1.7, 0.17083333333333334], [0.84, 0.010416666666666666], [1.5, 0.3729166666666667], [0.9, 0.008333333333333333], [1.12, 0.28541666666666665], [1.12, 0.016666666666666666], [0.84, 0.43125], [0.28, 0.008333333333333333], [1.33, 0.0020833333333333333], [0.84, 0.010416666666666666], [1.0, 0.004166666666666667], [1.5, 0.0625], [1.7, 1.0], [0.9, 1.0], [1.12, 1.0], [0.75, 0.0020833333333333333], [1.8, 1.0], [0.56, 0.0020833333333333333], [1.33, 0.49583333333333335], [1.33, 0.025], [1.33, 0.32708333333333334], [1.33, 0.025], [0.67, 1.0], [0.84, 0.34375], [0.84, 0.010416666666666666], [1.33, 0.725], [1.33, 0.016666666666666666], [0.9, 0.32916666666666666], [0.15, 0.50625], [1.5, 0.00625], [0.75, 0.014583333333333334], [0.28, 0.0875], [1.0, 0.025], [0.67, 1.0], [1.33, 1.0], [0.84, 0.004166666666666667], [0.44, 0.7479166666666667], [0.75, 0.17916666666666667], [0.75, 0.016666666666666666], [0.9, 0.04791666666666667], [0.9, 0.022916666666666665], [0.6, 0.05], [1.5, 0.03958333333333333], [1.5, 0.010416666666666666], [1.33, 0.20416666666666666], [1.2, 0.34791666666666665], [0.67, 0.00625], [1.12, 0.3104166666666667], [0.15, 0.37916666666666665], [0.44, 0.016666666666666666], [0.67, 1.0], [1.12, 1.0], [1.12, 0.0125], [0.9, 0.0020833333333333333], [0.67, 0.00625], [0.44, 1.0], [0.56, 0.004166666666666667], [0.33, 0.0020833333333333333], [0.9, 0.0020833333333333333], [0.5, 0.0020833333333333333], [1.33, 1.0], [1.5, 1.0], [1.2, 0.00625], [0.6, 0.0020833333333333333], [0.75, 0.027083333333333334], [1.12, 0.5104166666666666], [1.12, 0.016666666666666666], [0.5, 0.33541666666666664], [1.12, 1.0], [1.12, 0.016666666666666666], [0.5, 0.00625], [0.67, 0.32916666666666666], [0.67, 0.01875], [0.56, 0.38125], [0.56, 0.025], [1.12, 0.6479166666666667], [1.12, 0.022916666666666665], [0.9, 0.3458333333333333], [1.2, 0.014583333333333334], [0.44, 1.0], [0.9, 0.008333333333333333], [0.6, 1.0], [0.44, 0.00625], [0.67, 0.010416666666666666], [1.12, 1.0], [0.56, 1.0], [0.5, 0.03958333333333333], [0.33, 0.03125], [1.12, 0.23333333333333334], [1.0, 0.375], [1.12, 0.2708333333333333], [0.5, 0.022916666666666665], [1.12, 1.0], [1.2, 0.3625], [1.2, 0.020833333333333332], [0.67, 0.0020833333333333333], [0.6, 0.3125], [1.12, 1.0], [0.6, 0.0125], [1.12, 0.004166666666666667], [0.9, 0.33541666666666664], [1.2, 1.0], [1.2, 0.010416666666666666], [0.9, 1.0], [2.0, 0.3333333333333333], [0.19, 0.39375], [1.0, 0.11041666666666666], [1.7, 0.016666666666666666], [0.37, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.44, 0.10833333333333334], [0.67, 0.0020833333333333333], [0.9, 1.0], [1.2, 1.0], [1.12, 1.0], [0.5, 0.0020833333333333333], [0.6, 1.0], [2.0, 1.0], [1.8, 0.48541666666666666], [1.12, 0.0020833333333333333], [1.0, 0.32916666666666666], [1.7, 1.0], [1.7, 0.0125], [0.56, 1.0], [1.0, 0.0020833333333333333], [0.37, 0.30625], [0.37, 0.020833333333333332], [0.9, 0.0020833333333333333], [0.75, 0.3458333333333333], [0.56, 0.31875], [0.56, 0.010416666666666666], [1.0, 0.27708333333333335], [1.0, 0.01875], [0.15, 0.20625], [1.5, 0.21666666666666667], [0.3, 1.0], [0.37, 0.029166666666666667], [1.0, 0.022916666666666665], [1.12, 1.0], [0.75, 0.008333333333333333], [0.56, 1.0], [0.9, 1.0], [1.8, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.19, 0.00625], [0.3, 0.43333333333333335], [0.3, 0.022916666666666665], [0.44, 1.0], [0.6, 0.35208333333333336], [2.0, 0.33541666666666664], [1.0, 0.0020833333333333333], [0.3, 0.29375], [0.3, 0.0125], [1.5, 0.33958333333333335], [1.5, 0.020833333333333332], [0.15, 0.33125], [0.15, 0.014583333333333334], [0.3, 0.008333333333333333], [1.0, 0.425], [1.5, 1.0], [0.75, 0.010416666666666666], [1.12, 0.004166666666666667], [1.5, 1.0], [1.0, 0.004166666666666667], [0.14, 0.004166666666666667], [0.28, 1.0], [0.6, 0.022916666666666665], [2.0, 0.0020833333333333333], [0.15, 0.08125], [0.44, 0.016666666666666666], [1.7, 0.10625], [0.14, 0.18333333333333332], [0.28, 0.11041666666666666], [0.28, 0.010416666666666666], [0.14, 0.00625], [0.42, 0.28958333333333336], [0.14, 0.09375], [1.0, 0.27291666666666664], [0.7, 0.0020833333333333333], [0.56, 0.0020833333333333333], [1.0, 0.00625], [0.75, 0.14791666666666667], [0.42, 0.0020833333333333333], [1.5, 0.04791666666666667], [0.42, 0.37916666666666665], [1.12, 0.9333333333333333], [0.75, 0.020833333333333332], [1.12, 0.0020833333333333333], [0.9, 1.0], [0.37, 0.0020833333333333333], [0.19, 0.004166666666666667], [0.7, 0.004166666666666667], [0.56, 1.0], [1.7, 0.0020833333333333333], [0.42, 0.00625], [0.28, 0.014583333333333334], [1.0, 1.0], [0.19, 0.16041666666666668], [1.12, 0.35208333333333336], [2.24, 0.008333333333333333], [1.8, 0.0020833333333333333], [1.12, 0.004166666666666667], [0.37, 0.225], [0.37, 0.008333333333333333], [0.56, 1.0], [0.75, 0.34375], [1.8, 1.0], [2.24, 1.0], [2.24, 0.008333333333333333], [1.8, 0.0020833333333333333], [0.75, 1.0], [2.0, 0.31666666666666665], [1.7, 0.0020833333333333333], [0.9, 0.3416666666666667], [2.24, 1.0], [0.9, 0.010416666666666666], [2.24, 1.0], [3.0, 0.3333333333333333], [1.7, 0.39166666666666666], [2.67, 0.008333333333333333], [0.28, 1.0], [1.7, 0.0020833333333333333], [0.9, 0.08125], [0.75, 0.0020833333333333333], [0.37, 1.0], [0.56, 1.0], [1.8, 1.0], [2.0, 0.0020833333333333333], [1.12, 1.0], [2.24, 1.0], [3.0, 0.004166666666666667], [2.24, 0.4875], [1.33, 0.0020833333333333333], [0.67, 0.3020833333333333], [0.84, 0.0020833333333333333], [0.56, 1.0], [1.33, 0.2125], [1.33, 0.010416666666666666], [1.7, 0.05416666666666667], [1.7, 0.020833333333333332], [2.67, 0.06041666666666667], [2.67, 0.014583333333333334], [1.0, 0.0020833333333333333], [0.84, 0.2708333333333333], [0.84, 0.014583333333333334], [0.67, 0.3854166666666667], [1.33, 1.0], [1.7, 1.0], [0.67, 0.0125], [1.33, 1.0], [1.7, 1.0], [0.15, 0.3125], [1.5, 0.004166666666666667], [0.15, 0.375], [0.15, 0.01875], [3.0, 1.0], [0.3, 1.0], [1.8, 0.0020833333333333333], [0.28, 0.008333333333333333], [2.24, 1.0], [0.56, 1.0], [2.67, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.67, 0.0020833333333333333], [0.84, 0.0020833333333333333], [1.33, 1.0], [1.0, 1.0], [1.5, 0.41458333333333336], [1.8, 1.0], [1.5, 0.01875], [1.8, 1.0], [0.9, 0.004166666666666667], [3.0, 0.28125], [0.3, 0.016666666666666666], [0.3, 0.020833333333333332], [0.44, 1.0], [0.9, 0.3145833333333333], [1.5, 1.0], [1.5, 0.016666666666666666], [0.6, 0.0020833333333333333], [0.75, 1.0], [0.9, 0.0020833333333333333], [1.7, 0.21041666666666667], [0.84, 0.0020833333333333333], [0.9, 0.3145833333333333], [1.8, 1.0], [0.9, 0.016666666666666666], [1.8, 0.0020833333333333333], [1.5, 0.3020833333333333], [1.2, 0.010416666666666666], [2.4, 1.0], [1.5, 0.004166666666666667], [0.15, 0.14583333333333334], [0.22, 0.16041666666666668], [0.44, 0.0625], [1.8, 1.0], [0.6, 0.008333333333333333], [0.44, 1.0], [1.5, 0.0020833333333333333], [0.75, 1.0], [0.84, 1.0], [1.2, 1.0], [1.7, 1.0], [2.4, 1.0], [0.9, 0.0020833333333333333], [1.8, 0.004166666666666667], [1.33, 1.0], [2.24, 1.0], [1.12, 0.004166666666666667], [0.3, 0.025], [0.44, 0.17708333333333334], [0.44, 0.020833333333333332], [0.67, 0.30833333333333335], [2.0, 0.0020833333333333333], [1.0, 0.004166666666666667], [1.8, 0.2875], [1.8, 0.008333333333333333], [0.9, 1.0], [1.0, 0.375], [1.33, 1.0], [1.7, 0.010416666666666666], [1.33, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.12, 0.010416666666666666], [0.9, 1.0], [2.0, 1.0], [0.44, 1.0], [0.67, 0.0020833333333333333], [2.24, 1.0], [1.8, 1.0], [0.22, 0.03958333333333333], [0.28, 0.12291666666666666], [0.5, 0.375], [0.84, 0.0020833333333333333], [0.125, 0.4395833333333333], [1.8, 0.3020833333333333], [0.25, 1.0], [1.2, 0.0020833333333333333], [1.5, 1.0], [0.9, 0.010416666666666666], [0.28, 1.0], [0.5, 0.004166666666666667], [1.7, 1.0], [0.84, 0.0020833333333333333], [1.0, 0.035416666666666666], [1.33, 1.0], [1.2, 0.36875], [1.5, 1.0], [1.2, 0.014583333333333334], [1.5, 1.0], [0.75, 0.3125], [1.33, 0.004166666666666667], [1.7, 1.0], [0.5, 0.0020833333333333333], [1.2, 0.3541666666666667], [1.5, 1.0], [1.8, 1.0], [0.6, 0.010416666666666666], [1.8, 1.0], [1.5, 1.0], [1.2, 0.0020833333333333333], [0.9, 0.30833333333333335], [1.2, 1.0], [1.5, 1.0], [1.8, 1.0], [1.8, 0.010416666666666666], [1.5, 0.0020833333333333333], [0.9, 1.0], [1.2, 0.0020833333333333333], [0.75, 0.30625], [1.2, 1.0], [1.8, 1.0], [1.2, 0.008333333333333333], [1.8, 1.0], [0.75, 1.0], [2.4, 0.3145833333333333], [0.125, 0.07708333333333334], [0.4, 0.25833333333333336], [1.33, 0.06041666666666667], [1.8, 0.016666666666666666], [2.24, 0.00625], [1.33, 1.0], [1.12, 1.0], [0.8, 1.0], [1.8, 0.0020833333333333333], [1.5, 0.010416666666666666], [1.7, 0.0020833333333333333], [0.5, 1.0], [0.9, 1.0], [0.6, 1.0], [0.75, 1.0], [1.2, 1.0], [2.4, 1.0], [0.25, 0.008333333333333333], [1.12, 0.27291666666666664], [1.33, 1.0], [2.24, 1.0], [2.24, 0.0125], [1.12, 0.004166666666666667], [1.33, 1.0], [0.6, 0.23333333333333334], [1.8, 0.15], [1.8, 0.010416666666666666], [0.9, 1.0], [0.4, 0.42083333333333334], [2.0, 0.0125], [1.2, 0.00625], [1.0, 1.0], [1.6, 0.0020833333333333333], [0.4, 1.0], [0.2, 0.004166666666666667], [0.2, 0.2791666666666667], [0.2, 0.022916666666666665], [0.6, 0.29791666666666666], [0.8, 1.0], [0.6, 0.0125], [0.8, 0.004166666666666667], [0.5, 1.0], [0.14, 0.35833333333333334], [0.14, 0.3125], [1.12, 1.0], [2.24, 1.0], [0.28, 0.008333333333333333], [2.24, 1.0], [1.12, 1.0], [1.5, 0.0020833333333333333], [1.7, 1.0], [0.14, 0.0020833333333333333], [0.4, 0.0125], [2.0, 0.0020833333333333333], [0.9, 1.0], [1.33, 1.0], [1.2, 1.0], [1.8, 1.0], [0.8, 1.0], [1.0, 0.0020833333333333333], [1.6, 1.0], [0.6, 1.0], [0.5, 0.0020833333333333333], [0.2, 0.00625], [0.42, 0.5833333333333334], [0.75, 1.0], [1.0, 0.0020833333333333333], [1.25, 0.0125], [1.25, 0.010416666666666666], [0.28, 0.20833333333333334], [0.28, 0.014583333333333334], [0.75, 0.36875], [1.0, 1.0], [1.12, 1.0], [1.5, 1.0], [1.5, 0.008333333333333333], [0.75, 1.0], [1.12, 0.0020833333333333333], [1.0, 1.0], [0.56, 0.3145833333333333], [0.75, 0.29791666666666666], [1.0, 0.016666666666666666], [1.12, 1.0], [1.7, 1.0], [0.75, 0.008333333333333333], [1.7, 1.0], [1.12, 1.0], [1.0, 0.0020833333333333333], [0.42, 0.29375], [0.42, 0.01875], [0.14, 0.3645833333333333], [1.0, 1.0], [1.12, 1.0], [0.14, 0.022916666666666665], [0.7, 1.0], [1.12, 1.0], [1.0, 0.0020833333333333333], [0.56, 0.014583333333333334], [1.7, 1.0], [0.42, 1.0], [1.5, 1.0], [0.28, 0.0020833333333333333], [0.75, 0.022916666666666665], [2.24, 0.016666666666666666], [0.14, 0.23958333333333334], [0.28, 0.008333333333333333], [0.14, 0.004166666666666667], [0.7, 0.2604166666666667], [1.0, 1.0], [1.12, 1.0], [0.7, 0.010416666666666666], [1.12, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.14, 0.2708333333333333], [0.28, 1.0], [0.28, 0.010416666666666666], [0.14, 0.008333333333333333], [0.7, 0.34791666666666665], [1.0, 1.0], [1.12, 1.0], [0.42, 0.022916666666666665], [1.12, 1.0], [0.21, 1.0], [0.7, 1.0], [1.0, 0.0020833333333333333], [0.21, 0.008333333333333333], [0.14, 0.004166666666666667], [0.28, 0.38333333333333336], [0.7, 0.016666666666666666], [0.28, 0.00625], [0.7, 0.0020833333333333333], [0.56, 0.0020833333333333333], [0.19, 0.34375], [0.094, 1.0], [0.094, 0.014583333333333334], [0.19, 0.36666666666666664], [1.12, 1.0], [1.8, 0.010416666666666666], [1.12, 1.0], [0.19, 0.0020833333333333333], [1.5, 0.004166666666666667], [0.56, 0.010416666666666666], [0.28, 1.0], [0.42, 1.0], [0.7, 0.0020833333333333333], [1.0, 0.00625], [1.8, 0.4479166666666667], [1.8, 0.014583333333333334], [2.24, 0.004166666666666667], [0.37, 0.30625], [0.56, 1.0], [0.37, 0.33125], [1.8, 1.0], [2.24, 1.0], [2.24, 0.020833333333333332], [1.8, 0.0020833333333333333], [0.37, 0.0020833333333333333], [2.0, 0.29791666666666666], [1.7, 0.0020833333333333333], [0.9, 0.28541666666666665], [2.24, 0.04583333333333333], [2.24, 0.010416666666666666], [3.0, 0.30625], [2.67, 0.0625], [2.67, 0.020833333333333332], [0.14, 0.12291666666666666], [1.7, 0.19791666666666666], [0.19, 0.0020833333333333333], [0.28, 0.004166666666666667], [2.67, 1.0], [1.7, 0.0020833333333333333], [0.56, 1.0], [0.9, 1.0], [2.0, 1.0], [3.0, 0.0020833333333333333], [1.5, 1.0], [1.8, 1.0], [2.24, 1.0], [0.37, 0.00625], [1.12, 1.0], [0.14, 0.2708333333333333], [2.24, 0.24791666666666667], [1.33, 1.0], [0.56, 0.2791666666666667], [0.67, 0.0020833333333333333], [0.84, 0.004166666666666667], [1.33, 0.12291666666666666], [1.33, 0.020833333333333332], [1.7, 0.075], [1.7, 0.020833333333333332], [2.67, 0.10833333333333334], [2.67, 0.014583333333333334], [1.0, 0.004166666666666667], [0.84, 0.3333333333333333], [2.24, 1.0], [0.84, 0.020833333333333332], [2.24, 1.0], [0.67, 0.29791666666666666], [1.7, 1.0], [1.0, 0.016666666666666666], [0.67, 0.004166666666666667], [1.7, 0.0020833333333333333], [1.0, 0.004166666666666667], [1.33, 0.27708333333333335], [1.33, 0.020833333333333332], [0.15, 0.11458333333333333], [0.3, 0.2708333333333333], [1.5, 1.0], [3.0, 0.0020833333333333333], [1.8, 1.0], [0.56, 0.004166666666666667], [0.28, 0.0020833333333333333], [1.33, 0.00625], [2.67, 1.0], [1.7, 1.0], [0.67, 0.025], [0.84, 1.0], [1.0, 1.0], [2.24, 0.14375], [1.5, 0.35208333333333336], [1.8, 1.0], [1.5, 0.020833333333333332], [0.9, 0.0020833333333333333], [1.8, 1.0], [0.3, 0.26666666666666666], [0.3, 0.014583333333333334], [0.44, 0.1375], [0.9, 0.21458333333333332], [1.5, 1.0], [0.75, 0.022916666666666665], [0.6, 1.0], [1.5, 1.0], [0.9, 1.0], [1.7, 0.36041666666666666], [0.84, 0.004166666666666667], [0.44, 0.3], [0.9, 1.0], [1.8, 1.0], [0.9, 0.008333333333333333], [0.44, 0.0020833333333333333], [1.8, 1.0], [2.4, 0.28958333333333336], [0.22, 0.32083333333333336], [1.8, 0.06875], [0.3, 0.0020833333333333333], [2.24, 1.0], [1.33, 1.0], [0.6, 1.0], [0.9, 1.0], [0.44, 0.0020833333333333333], [0.75, 1.0], [2.4, 1.0], [1.5, 1.0], [0.84, 1.0], [1.8, 1.0], [1.7, 1.0], [1.12, 1.0], [0.15, 0.008333333333333333], [3.0, 1.0], [0.44, 0.2125], [0.67, 0.30416666666666664], [2.0, 1.0], [1.0, 0.0020833333333333333], [1.8, 0.28125], [1.8, 0.010416666666666666], [0.9, 0.0020833333333333333], [0.17, 0.25416666666666665], [1.0, 0.13333333333333333], [1.33, 1.0], [0.84, 0.014583333333333334], [1.33, 0.004166666666666667], [1.7, 0.0020833333333333333], [0.14, 0.0020833333333333333], [1.0, 1.0], [1.12, 0.03333333333333333], [0.22, 1.0], [0.44, 1.0], [2.24, 1.0], [0.9, 1.0], [0.67, 0.0020833333333333333], [2.0, 0.0020833333333333333], [0.17, 1.0], [1.8, 1.0], [0.14, 0.04791666666666667], [0.28, 0.07708333333333334], [0.84, 0.3229166666666667], [0.84, 0.010416666666666666], [0.5, 0.004166666666666667], [0.9, 0.3145833333333333], [0.25, 0.4979166666666667], [1.8, 0.004166666666666667], [1.5, 1.0], [0.5, 0.0020833333333333333], [0.28, 1.0], [0.9, 1.0], [1.7, 0.0020833333333333333], [0.84, 1.0], [1.0, 0.008333333333333333], [1.33, 0.014583333333333334], [1.5, 0.2875], [1.5, 0.022916666666666665], [1.2, 0.0020833333333333333], [0.5, 0.27291666666666664], [1.7, 1.0], [1.33, 1.0], [1.2, 0.3729166666666667], [1.5, 1.0], [1.8, 1.0], [0.6, 0.008333333333333333], [1.5, 0.0020833333333333333], [1.8, 1.0], [1.2, 1.0], [1.2, 0.3104166666666667], [1.8, 1.0], [1.5, 0.016666666666666666], [1.8, 0.004166666666666667], [1.2, 0.0020833333333333333], [0.9, 0.0020833333333333333], [1.5, 0.010416666666666666], [1.2, 0.28541666666666665], [1.8, 1.0], [1.8, 0.010416666666666666], [1.2, 1.0], [0.5, 0.004166666666666667], [0.75, 0.0020833333333333333], [0.5, 0.01875], [2.4, 0.2520833333333333], [1.33, 0.5270833333333333], [2.24, 0.010416666666666666], [1.12, 0.004166666666666667], [0.6, 0.0020833333333333333], [1.33, 0.0020833333333333333], [0.6, 0.008333333333333333], [0.4, 0.010416666666666666], [0.25, 0.008333333333333333], [1.7, 0.004166666666666667], [0.9, 1.0], [1.2, 0.0020833333333333333], [0.5, 1.0], [0.75, 1.0], [2.4, 0.0020833333333333333], [1.5, 0.041666666666666664], [0.6, 0.32083333333333336], [1.33, 1.0], [2.24, 1.0], [0.3, 1.0], [0.6, 0.010416666666666666], [2.24, 0.008333333333333333], [0.8, 0.0020833333333333333], [0.56, 1.0], [1.33, 0.0020833333333333333], [1.8, 0.4083333333333333], [1.8, 0.025], [0.9, 1.0], [0.4, 0.375], [1.2, 0.01875], [2.0, 0.0020833333333333333], [0.4, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.6, 0.0020833333333333333], [0.2, 0.0020833333333333333], [0.2, 0.30833333333333335], [0.2, 0.01875], [0.6, 0.2520833333333333], [0.8, 1.0], [0.6, 0.016666666666666666], [0.8, 0.004166666666666667], [0.5, 0.0020833333333333333], [0.14, 0.25416666666666665], [0.14, 0.4125], [1.12, 1.0], [2.24, 1.0], [0.28, 0.00625], [0.14, 0.0020833333333333333], [2.24, 0.00625], [1.12, 0.0020833333333333333], [1.7, 0.00625], [1.5, 1.0], [0.9, 0.1125], [1.0, 0.004166666666666667], [1.33, 1.0], [1.8, 1.0], [0.4, 0.0020833333333333333], [1.6, 0.0020833333333333333], [1.2, 0.0020833333333333333], [0.8, 1.0], [0.2, 1.0], [2.0, 1.0], [0.3, 1.0], [0.6, 0.0020833333333333333], [0.5, 0.00625], [0.56, 0.016666666666666666], [1.12, 0.3854166666666667], [1.12, 0.022916666666666665], [0.75, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.42, 0.31875], [0.28, 0.29375], [0.75, 1.0], [1.0, 1.0], [1.12, 1.0], [1.5, 1.0], [0.28, 0.0125], [0.75, 0.0020833333333333333], [1.5, 1.0], [1.0, 0.008333333333333333], [1.12, 1.0], [0.16, 0.26458333333333334], [0.14, 0.36875], [0.28, 1.0], [1.0, 1.0], [1.12, 1.0], [1.7, 1.0], [0.7, 0.00625], [0.28, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.14, 1.0], [1.12, 0.00625], [1.0, 1.0], [0.42, 0.12083333333333333], [1.5, 0.004166666666666667], [0.75, 1.0], [0.16, 0.022916666666666665], [2.24, 1.0], [0.7, 0.35208333333333336], [1.0, 0.016666666666666666], [1.12, 1.0], [0.7, 0.00625], [1.12, 0.00625], [1.0, 0.00625], [0.14, 0.04583333333333333], [0.28, 0.2875], [0.42, 0.008333333333333333], [0.28, 1.0], [0.7, 0.2791666666666667], [1.0, 1.0], [1.12, 1.0], [0.7, 0.0125], [1.12, 1.0], [1.0, 0.004166666666666667], [0.56, 0.3958333333333333], [1.4, 0.3145833333333333], [1.0, 0.025], [1.0, 0.022916666666666665], [0.42, 0.26458333333333334], [0.42, 0.01875], [1.5, 0.425], [1.0, 0.004166666666666667], [1.0, 0.010416666666666666], [0.14, 0.7208333333333333], [1.0, 0.18125], [1.0, 0.016666666666666666], [0.19, 0.00625], [0.37, 0.0020833333333333333], [1.5, 0.0020833333333333333], [1.12, 0.0020833333333333333], [0.7, 0.0020833333333333333], [1.4, 1.0], [0.28, 1.0], [0.14, 1.0], [0.56, 1.0], [0.42, 1.0], [1.7, 1.0], [0.37, 0.20833333333333334], [0.37, 0.6291666666666667], [1.0, 0.3458333333333333], [1.0, 0.025], [0.75, 1.0], [0.56, 0.6645833333333333], [0.19, 0.35208333333333336], [0.19, 0.020833333333333332], [0.37, 0.4895833333333333], [0.37, 0.014583333333333334], [0.56, 0.0020833333333333333], [0.75, 1.0], [0.94, 0.008333333333333333], [0.75, 1.0], [0.56, 1.0], [1.0, 0.03333333333333333], [0.19, 0.004166666666666667], [0.94, 0.029166666666666667], [0.37, 0.0020833333333333333], [0.75, 0.04791666666666667], [0.56, 0.016666666666666666], [4.5, 0.17291666666666666], [0.44, 0.004166666666666667], [2.67, 0.00625], [4.5, 0.33541666666666664], [2.67, 0.016666666666666666], [4.5, 0.00625], [0.67, 0.00625], [2.67, 0.0020833333333333333], [0.44, 0.24166666666666667], [2.24, 0.11041666666666666], [2.67, 0.28958333333333336], [4.76, 0.004166666666666667], [2.67, 0.00625], [0.9, 0.00625], [2.24, 0.30416666666666664], [2.24, 0.016666666666666666], [2.67, 0.3020833333333333], [4.5, 1.0], [4.5, 0.01875], [2.67, 0.004166666666666667], [1.12, 0.004166666666666667], [2.24, 0.27708333333333335], [2.24, 0.010416666666666666], [4.0, 0.3229166666666667], [0.42, 0.00625], [2.24, 0.025], [0.67, 0.00625], [0.9, 1.0], [1.12, 0.020833333333333332], [2.67, 0.016666666666666666], [4.76, 0.014583333333333334], [2.24, 0.17083333333333334], [0.67, 0.28541666666666665], [2.0, 0.004166666666666667], [2.24, 0.28958333333333336], [2.24, 0.022916666666666665], [5.34, 0.3229166666666667], [1.0, 0.029166666666666667], [2.24, 0.26666666666666666], [2.24, 0.020833333333333332], [0.67, 0.3458333333333333], [2.0, 1.0], [0.67, 0.010416666666666666], [2.0, 0.004166666666666667], [2.24, 0.3541666666666667], [2.24, 0.010416666666666666], [0.37, 0.3020833333333333], [3.56, 1.0], [2.24, 0.004166666666666667], [2.0, 0.004166666666666667], [1.0, 1.0], [4.0, 1.0], [0.67, 0.0020833333333333333], [5.34, 1.0], [0.42, 0.004166666666666667], [4.5, 0.008333333333333333], [2.0, 0.06666666666666667], [3.56, 0.3020833333333333], [3.56, 0.016666666666666666], [0.56, 0.008333333333333333], [1.8, 1.0], [4.0, 0.6583333333333333], [0.75, 0.0125], [2.0, 0.29583333333333334], [2.0, 0.01875], [3.56, 0.3020833333333333], [3.56, 0.016666666666666666], [0.9, 0.0125], [1.8, 0.28958333333333336], [1.8, 0.0125], [4.5, 0.3729166666666667], [3.36, 0.008333333333333333], [0.33, 1.0], [0.67, 0.004166666666666667], [0.75, 0.00625], [0.9, 0.0020833333333333333], [3.56, 1.0], [2.0, 0.0020833333333333333], [0.56, 1.0], [1.8, 0.0020833333333333333], [0.37, 0.0020833333333333333], [2.24, 0.12916666666666668], [2.0, 0.34375], [0.84, 0.0020833333333333333], [1.7, 0.3104166666666667], [0.67, 0.35], [3.36, 1.0], [3.36, 0.01875], [0.67, 0.004166666666666667], [2.24, 0.32916666666666666], [2.24, 0.01875], [0.84, 0.3333333333333333], [2.0, 1.0], [0.84, 0.008333333333333333], [2.0, 1.0], [1.7, 0.2625], [1.7, 0.010416666666666666], [0.22, 0.30625], [4.5, 0.09583333333333334], [3.36, 0.0020833333333333333], [1.7, 1.0], [0.67, 1.0], [2.24, 0.0020833333333333333], [0.84, 1.0], [2.0, 1.0], [0.33, 0.010416666666666666], [4.0, 1.0], [2.24, 0.0020833333333333333], [1.12, 0.00625], [1.33, 1.0], [0.44, 0.1625], [0.67, 0.34791666666666665], [0.9, 0.3], [1.33, 0.30833333333333335], [2.0, 0.010416666666666666], [1.33, 1.0], [1.0, 1.0], [0.67, 0.3104166666666667], [0.67, 0.0125], [1.12, 0.33958333333333335], [1.33, 1.0], [2.24, 1.0], [2.24, 0.008333333333333333], [1.12, 0.004166666666666667], [1.33, 1.0], [0.21, 0.3625], [1.33, 0.32916666666666666], [2.0, 1.0], [2.67, 0.010416666666666666], [1.33, 0.004166666666666667], [0.42, 0.00625], [2.0, 1.0], [0.67, 0.04375], [0.44, 1.0], [0.9, 0.0020833333333333333], [0.22, 0.0020833333333333333], [2.24, 1.0], [1.0, 1.0], [1.12, 0.0020833333333333333], [0.21, 0.28125], [1.33, 0.33541666666666664], [2.24, 0.004166666666666667], [1.33, 0.00625], [1.12, 1.0], [0.42, 0.325], [0.42, 0.0125], [0.67, 1.0], [1.33, 0.27708333333333335], [2.0, 1.0], [2.0, 0.020833333333333332], [1.33, 0.0020833333333333333], [0.5, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.84, 0.3416666666666667], [1.8, 0.34791666666666665], [2.0, 0.19166666666666668], [2.0, 0.022916666666666665], [1.8, 0.17083333333333334], [1.8, 0.020833333333333332], [0.15, 0.3229166666666667], [0.3, 0.06458333333333334], [1.12, 0.0125], [1.5, 0.0020833333333333333], [1.33, 1.0], [0.5, 1.0], [0.67, 1.0], [0.84, 1.0], [2.0, 1.0], [0.42, 1.0], [2.24, 1.0], [1.8, 0.0020833333333333333], [2.67, 0.004166666666666667], [1.0, 0.05], [0.15, 0.20833333333333334], [0.6, 0.48125], [0.75, 0.3125], [1.0, 0.35], [1.12, 0.31875], [1.12, 0.41041666666666665], [1.5, 1.0], [1.5, 0.008333333333333333], [1.12, 0.0125], [3.0, 1.0770833333333334], [1.5, 2.6770833333333335], [1.5, 0.01875], [1.7, 0.49583333333333335], [0.19, 0.6791666666666667], [1.8, 0.004166666666666667], [0.9, 0.016666666666666666], [1.7, 0.0020833333333333333], [0.6, 0.0020833333333333333], [0.75, 1.0], [3.0, 0.0020833333333333333], [0.3, 1.0], [1.5, 1.0], [1.0, 0.0020833333333333333], [1.12, 0.052083333333333336], [0.56, 0.9854166666666667], [0.19, 0.13541666666666666], [0.9, 0.010416666666666666], [0.56, 0.010416666666666666], [1.8, 0.022916666666666665], [1.8, 0.09375], [0.9, 0.0125], [1.7, 0.3625], [1.8, 0.052083333333333336], [1.5, 0.2791666666666667], [1.7, 0.010416666666666666], [1.33, 0.04583333333333333], [0.14, 0.15416666666666667], [1.12, 0.24166666666666667], [0.28, 0.0020833333333333333], [1.0, 0.010416666666666666], [0.84, 0.0020833333333333333], [0.14, 0.4125], [1.5, 0.004166666666666667], [1.33, 0.0020833333333333333], [1.12, 0.0020833333333333333], [0.9, 0.004166666666666667], [0.28, 0.014583333333333334], [1.33, 0.21666666666666667], [1.33, 0.11458333333333333], [0.28, 0.22083333333333333], [1.0, 1.0], [1.33, 0.0020833333333333333], [0.84, 0.01875], [0.28, 0.04375], [0.67, 0.28958333333333336], [0.84, 0.03333333333333333], [1.0, 0.008333333333333333], [0.5, 0.24583333333333332], [0.84, 0.0625], [0.5, 0.0125], [1.0, 0.18125], [1.33, 0.035416666666666666], [0.67, 0.035416666666666666], [0.28, 0.010416666666666666], [0.84, 0.325], [0.15, 0.3], [0.15, 0.020833333333333332], [0.28, 0.07083333333333333], [0.84, 1.0], [0.3, 0.008333333333333333], [1.5, 0.004166666666666667], [0.75, 0.00625], [0.9, 0.00625], [0.3, 0.7354166666666667], [0.75, 0.32083333333333336], [0.3, 0.008333333333333333], [0.44, 0.0020833333333333333], [0.3, 0.29583333333333334], [0.44, 0.0020833333333333333], [1.5, 0.004166666666666667], [1.5, 1.0], [0.6, 0.004166666666666667], [0.6, 0.175], [1.33, 0.022916666666666665], [1.2, 0.3375], [1.12, 0.28958333333333336], [0.22, 0.09166666666666666], [1.12, 0.28125], [0.67, 0.022916666666666665], [1.12, 1.0], [0.44, 0.00625], [0.33, 0.010416666666666666], [0.33, 0.008333333333333333], [0.5, 0.00625], [1.33, 0.04583333333333333], [1.5, 0.0020833333333333333], [0.22, 0.008333333333333333], [1.2, 0.010416666666666666], [1.12, 0.36041666666666666], [1.12, 0.07291666666666667], [1.12, 0.29375], [1.12, 0.014583333333333334], [0.9, 0.00625], [0.44, 0.016666666666666666], [0.5, 0.016666666666666666], [0.67, 1.0], [0.67, 0.0125], [0.5, 0.00625], [0.5, 0.26458333333333334], [0.67, 0.016666666666666666], [0.33, 0.0625], [0.33, 0.08958333333333333], [0.67, 0.225], [0.56, 0.0125], [0.5, 1.0], [1.12, 0.09375], [1.12, 0.20416666666666666], [0.25, 0.1625], [0.44, 0.11875], [0.9, 0.0020833333333333333], [0.5, 0.004166666666666667], [0.67, 0.004166666666666667], [1.12, 0.010416666666666666], [1.2, 0.035416666666666666], [0.56, 0.01875], [1.12, 0.10625], [0.6, 0.32916666666666666], [1.0, 0.0020833333333333333], [1.12, 0.26666666666666666], [1.12, 0.010416666666666666], [0.5, 0.0020833333333333333], [1.2, 0.37083333333333335], [0.25, 1.0], [0.44, 1.0], [0.5, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.9, 0.004166666666666667], [1.2, 0.00625], [0.9, 0.0020833333333333333], [1.12, 0.08541666666666667], [0.9, 0.07083333333333333], [1.2, 0.14791666666666667], [0.6, 0.008333333333333333], [0.6, 0.016666666666666666], [1.12, 0.004166666666666667], [0.6, 0.08958333333333333], [0.25, 0.23541666666666666], [1.2, 0.0020833333333333333], [0.25, 0.01875], [1.12, 0.04791666666666667], [2.0, 0.26666666666666666], [0.19, 0.008333333333333333], [1.7, 0.375], [1.0, 0.008333333333333333], [0.37, 0.0020833333333333333], [0.56, 0.3770833333333333], [1.8, 0.2875], [1.12, 0.0020833333333333333], [0.37, 0.33958333333333335], [1.0, 0.014583333333333334], [1.7, 1.0], [0.37, 0.0020833333333333333], [1.7, 0.00625], [1.0, 0.00625], [1.2, 0.004166666666666667], [0.19, 0.0020833333333333333], [1.8, 0.0020833333333333333], [1.12, 1.0], [2.0, 1.0], [0.56, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.9, 0.05], [0.75, 1.0], [0.56, 0.325], [0.37, 0.01875], [0.75, 0.03125], [1.5, 0.027083333333333334], [1.7, 0.3104166666666667], [1.7, 0.014583333333333334], [0.56, 0.03958333333333333], [0.9, 1.0], [1.7, 0.0020833333333333333], [1.5, 0.010416666666666666], [1.5, 0.010416666666666666], [1.8, 1.0], [0.3, 0.010416666666666666], [1.7, 0.11666666666666667], [1.33, 0.0020833333333333333], [1.5, 0.29791666666666666], [1.5, 0.010416666666666666], [1.2, 0.0020833333333333333], [1.33, 0.275], [1.7, 1.0], [1.7, 0.0125], [1.33, 1.0], [1.5, 0.45208333333333334], [1.8, 1.0], [1.5, 0.0125], [1.8, 0.004166666666666667], [1.7, 0.03958333333333333], [1.33, 0.004166666666666667], [1.7, 0.23333333333333334], [1.33, 1.0], [1.2, 0.40625], [1.5, 1.0], [1.2, 0.0125], [1.5, 1.0], [0.14, 0.28541666666666665], [1.7, 0.18125], [0.28, 0.00625], [0.75, 0.0125], [1.7, 1.0], [1.12, 0.0020833333333333333], [1.5, 1.0], [1.2, 1.0], [0.84, 1.0], [1.33, 0.0020833333333333333], [0.3, 1.0], [1.8, 0.022916666666666665], [0.75, 0.39375], [0.14, 0.21458333333333332], [0.84, 0.06458333333333334], [0.84, 0.0125], [0.75, 1.0], [0.28, 0.30625], [0.28, 0.022916666666666665], [0.42, 1.0], [0.84, 0.12708333333333333], [1.12, 1.0], [0.42, 0.0020833333333333333], [0.75, 0.041666666666666664], [1.12, 0.2375], [0.7, 0.004166666666666667], [0.56, 0.0020833333333333333], [1.5, 0.6791666666666667], [1.7, 0.325], [1.7, 0.008333333333333333], [0.19, 0.32916666666666666], [0.56, 0.26458333333333334], [0.28, 0.0020833333333333333], [0.7, 1.0], [1.5, 0.0020833333333333333], [1.7, 1.0], [1.8, 0.0020833333333333333], [0.9, 0.00625], [0.37, 0.0020833333333333333], [0.19, 0.23958333333333334], [0.56, 0.69375], [0.37, 0.3875], [0.9, 0.014583333333333334], [1.8, 1.0], [0.37, 0.008333333333333333], [1.8, 1.0], [0.9, 0.004166666666666667], [0.75, 0.3125], [1.7, 0.0020833333333333333], [1.5, 0.3333333333333333], [1.33, 0.37083333333333335], [1.12, 0.058333333333333334], [1.12, 0.26875], [0.14, 0.008333333333333333], [0.28, 1.0], [1.7, 0.0020833333333333333], [0.37, 0.0020833333333333333], [0.75, 0.0020833333333333333], [1.5, 1.0], [1.8, 1.0], [0.9, 1.0], [1.33, 0.0020833333333333333], [0.56, 0.0375], [0.14, 0.15], [0.84, 0.33125], [1.33, 0.0020833333333333333], [0.28, 0.29791666666666666], [1.12, 0.0020833333333333333], [0.84, 1.0], [1.33, 0.03125], [0.28, 0.01875], [1.33, 1.0], [0.42, 0.0020833333333333333], [0.42, 0.13333333333333333], [0.56, 0.2125], [0.84, 0.0020833333333333333], [1.0, 1.0], [1.0, 0.12916666666666668], [0.28, 0.03958333333333333], [0.56, 0.0125], [0.42, 0.0875], [1.33, 0.2708333333333333], [1.33, 0.0125], [0.9, 0.325], [0.15, 0.09166666666666666], [0.15, 0.275], [0.15, 0.020833333333333332], [0.3, 0.022916666666666665], [0.42, 0.029166666666666667], [0.84, 0.010416666666666666], [1.5, 0.0020833333333333333], [0.75, 0.0020833333333333333], [0.9, 0.0020833333333333333], [1.2, 0.004166666666666667], [0.9, 0.00625], [0.15, 0.12708333333333333], [0.3, 0.016666666666666666], [1.33, 0.03333333333333333], [0.3, 0.07708333333333334], [0.44, 0.05416666666666667], [0.75, 0.027083333333333334], [0.9, 0.28958333333333336], [1.5, 1.0], [0.6, 0.008333333333333333], [0.75, 1.0], [1.5, 0.0020833333333333333], [0.9, 0.008333333333333333], [0.44, 0.022916666666666665], [1.2, 0.0125], [0.44, 0.15208333333333332], [1.33, 0.0020833333333333333], [1.2, 0.32083333333333336], [1.12, 0.2791666666666667], [0.9, 0.4083333333333333], [1.12, 1.0], [0.67, 0.008333333333333333], [0.9, 0.0020833333333333333], [1.12, 0.0020833333333333333], [0.5, 0.0020833333333333333], [0.44, 0.03333333333333333], [1.2, 0.020833333333333332], [1.5, 0.075], [0.75, 0.04791666666666667], [0.6, 0.008333333333333333], [0.3, 0.025], [1.33, 0.016666666666666666], [0.44, 0.11666666666666667], [1.12, 0.27291666666666664], [1.12, 0.010416666666666666], [1.12, 0.29375], [1.12, 0.020833333333333332], [0.44, 0.25], [0.44, 0.020833333333333332], [0.5, 0.06041666666666667], [0.67, 1.0], [0.9, 1.0], [0.9, 0.020833333333333332], [0.67, 1.0], [0.5, 0.0020833333333333333], [0.56, 1.0], [0.44, 0.2791666666666667], [0.44, 0.01875], [0.5, 0.31875], [0.56, 1.0], [0.67, 1.0], [0.5, 0.020833333333333332], [0.67, 1.0], [0.56, 1.0], [1.12, 0.2833333333333333], [1.12, 0.016666666666666666], [0.125, 0.10625], [0.9, 0.33958333333333335], [1.2, 0.014583333333333334], [0.9, 0.0020833333333333333], [0.25, 1.0], [0.5, 0.022916666666666665], [0.44, 1.0], [0.56, 1.0], [0.67, 1.0], [1.12, 0.0020833333333333333], [1.12, 0.18541666666666667], [0.25, 0.32708333333333334], [0.25, 0.0125], [1.0, 0.004166666666666667], [1.12, 0.25416666666666665], [1.12, 0.022916666666666665], [0.44, 1.0], [1.2, 0.3458333333333333], [1.2, 0.010416666666666666], [0.6, 0.0020833333333333333], [1.12, 0.275], [1.12, 0.008333333333333333], [0.5, 0.0020833333333333333], [0.6, 0.325], [1.2, 1.0], [0.6, 0.0125], [1.2, 0.0020833333333333333], [2.0, 0.31875], [1.0, 0.45208333333333334], [0.19, 0.00625], [1.7, 0.0020833333333333333], [1.0, 1.0], [0.125, 0.022916666666666665], [0.25, 0.00625], [0.44, 1.0], [1.2, 0.004166666666666667], [0.6, 1.0], [1.12, 0.0020833333333333333], [2.0, 1.0], [0.9, 0.01875], [0.5, 0.04791666666666667], [0.19, 0.4479166666666667], [0.19, 0.020833333333333332], [1.8, 0.0020833333333333333], [1.12, 1.0], [1.7, 0.29791666666666666], [1.0, 0.014583333333333334], [0.56, 0.00625], [1.7, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.37, 0.3375], [0.9, 0.00625], [1.0, 0.31875], [0.75, 0.004166666666666667], [1.0, 0.014583333333333334], [0.56, 0.3020833333333333], [0.9, 1.0], [0.56, 0.008333333333333333], [0.9, 1.0], [0.15, 0.26666666666666666], [0.75, 0.34791666666666665], [1.0, 0.016666666666666666], [1.12, 1.0], [0.75, 0.00625], [1.5, 1.0], [0.3, 0.0020833333333333333], [1.12, 1.0], [1.0, 0.0020833333333333333], [0.37, 0.014583333333333334], [0.56, 0.008333333333333333], [0.9, 1.0], [1.8, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.19, 0.014583333333333334], [0.3, 0.5125], [0.3, 0.010416666666666666], [0.44, 1.0], [0.6, 0.28958333333333336], [1.5, 0.275], [0.75, 0.016666666666666666], [1.0, 1.0], [1.5, 0.00625], [2.0, 0.0020833333333333333], [0.75, 1.0], [1.0, 1.0], [0.3, 0.3125], [0.3, 0.010416666666666666], [0.75, 0.27708333333333335], [1.0, 0.014583333333333334], [1.12, 1.0], [1.5, 1.0], [0.75, 0.008333333333333333], [1.5, 1.0], [1.12, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.15, 0.14791666666666667], [0.15, 0.022916666666666665], [0.14, 0.25], [0.75, 0.25625], [1.0, 1.0], [1.12, 1.0], [1.5, 1.0], [1.5, 0.010416666666666666], [0.75, 1.0], [0.28, 1.0], [1.0, 0.008333333333333333], [1.12, 1.0], [0.15, 0.05625], [0.14, 0.00625], [2.0, 1.0], [0.44, 0.0020833333333333333], [0.3, 0.0020833333333333333], [0.6, 0.0020833333333333333], [1.7, 0.1875], [0.28, 0.30833333333333335], [0.75, 1.0], [1.0, 1.0], [0.28, 0.008333333333333333], [0.75, 1.0], [1.0, 0.014583333333333334], [0.42, 0.2833333333333333], [1.0, 0.31666666666666665], [1.12, 1.0], [0.7, 0.014583333333333334], [0.56, 0.0020833333333333333], [1.12, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.42, 0.004166666666666667], [0.75, 0.0020833333333333333], [1.5, 0.04375], [0.28, 0.4625], [0.7, 1.0], [0.28, 0.025], [0.7, 1.0], [0.094, 0.31666666666666665], [0.094, 0.010416666666666666], [1.12, 0.4], [1.12, 0.020833333333333332], [0.75, 0.0020833333333333333], [1.5, 1.0], [0.19, 0.0020833333333333333], [0.9, 0.0020833333333333333], [1.7, 0.10208333333333333], [0.56, 0.0020833333333333333], [0.7, 0.0020833333333333333], [1.0, 0.022916666666666665], [0.28, 0.03125], [1.12, 0.35208333333333336], [1.8, 0.016666666666666666], [2.24, 0.0020833333333333333], [1.12, 0.004166666666666667], [0.56, 0.33958333333333335], [1.8, 0.30833333333333335], [2.24, 1.0], [2.24, 0.020833333333333332], [0.44, 0.0020833333333333333], [1.8, 1.0], [0.75, 0.29791666666666666], [0.75, 0.01875], [2.0, 0.0020833333333333333], [1.7, 1.0], [2.24, 0.2833333333333333], [2.24, 0.01875], [1.8, 0.26875], [2.24, 1.0], [3.0, 0.008333333333333333], [1.8, 0.004166666666666667], [2.24, 0.008333333333333333], [0.14, 0.3], [1.7, 0.12708333333333333], [0.28, 0.00625], [2.67, 0.0020833333333333333], [1.7, 0.004166666666666667], [0.44, 0.0125], [2.0, 1.0], [1.5, 1.0], [0.75, 0.0020833333333333333], [1.8, 1.0], [1.12, 1.0], [3.0, 1.0], [2.24, 1.0], [0.56, 1.0], [0.19, 0.020833333333333332], [0.9, 1.0], [2.24, 0.47708333333333336], [1.33, 0.0020833333333333333], [0.67, 0.29583333333333334], [0.84, 1.0], [0.56, 1.0], [1.33, 0.16875], [1.33, 0.022916666666666665], [1.7, 0.058333333333333334], [1.7, 0.014583333333333334], [2.67, 0.06458333333333334], [2.67, 0.022916666666666665], [1.0, 0.0020833333333333333], [0.84, 0.29583333333333334], [0.84, 0.014583333333333334], [0.67, 0.30416666666666664], [1.33, 1.0], [1.7, 1.0], [0.67, 0.016666666666666666], [1.33, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.15, 0.3229166666666667], [1.5, 1.0], [3.0, 0.3416666666666667], [0.3, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.56, 0.022916666666666665], [0.28, 1.0], [1.0, 0.0020833333333333333], [0.84, 0.0020833333333333333], [2.67, 0.0020833333333333333], [1.7, 1.0], [0.67, 1.0], [1.33, 0.004166666666666667], [0.14, 0.04375], [1.8, 0.48125], [1.5, 0.014583333333333334], [1.8, 0.008333333333333333], [1.5, 1.0], [0.9, 1.0], [0.3, 0.29583333333333334], [0.3, 0.020833333333333332], [0.44, 0.0020833333333333333], [0.3, 0.28125], [1.5, 1.0], [0.3, 0.0125], [1.5, 0.004166666666666667], [0.6, 0.004166666666666667], [0.75, 1.0], [1.7, 0.3104166666666667], [0.84, 1.0], [0.44, 0.325], [0.9, 1.0], [1.8, 1.0], [0.44, 0.010416666666666666], [1.8, 0.0020833333333333333], [0.9, 1.0], [2.4, 0.26875], [0.11, 0.20625], [0.11, 0.025], [2.24, 0.1125], [0.44, 0.020833333333333332], [1.7, 1.0], [0.75, 1.0], [2.4, 1.0], [0.84, 1.0], [0.6, 1.0], [0.9, 1.0], [0.3, 1.0], [1.5, 1.0], [3.0, 0.0020833333333333333], [0.15, 0.03958333333333333], [1.8, 1.0], [2.24, 0.008333333333333333], [1.33, 0.0020833333333333333], [1.8, 1.0], [1.12, 1.0], [0.44, 0.21875], [2.0, 0.33541666666666664], [1.0, 0.004166666666666667], [1.8, 0.275], [1.8, 0.01875], [0.9, 0.00625], [0.14, 0.13125], [1.12, 0.21041666666666667], [0.28, 0.016666666666666666], [0.44, 0.004166666666666667], [2.24, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.9, 1.0], [2.0, 1.0], [1.0, 0.008333333333333333], [1.33, 1.0], [1.7, 0.004166666666666667], [0.84, 0.0020833333333333333], [1.33, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.14, 0.2875], [0.84, 0.225], [0.84, 0.010416666666666666], [0.28, 0.00625], [0.33, 1.0], [0.5, 0.004166666666666667], [0.28, 0.004166666666666667], [0.9, 0.26666666666666666], [0.25, 0.4041666666666667], [1.5, 1.0], [1.8, 1.0], [0.33, 1.0], [0.9, 0.0020833333333333333], [0.28, 1.0], [1.0, 1.0], [1.7, 1.0], [0.84, 1.0], [1.33, 0.0020833333333333333], [0.5, 1.0], [1.5, 0.54375], [1.5, 0.0125], [1.2, 0.0020833333333333333], [0.5, 0.0020833333333333333], [0.5, 0.2875], [0.75, 0.00625], [1.33, 0.0020833333333333333], [1.7, 1.0], [0.5, 0.0020833333333333333], [1.2, 0.325], [1.5, 1.0], [1.8, 1.0], [1.2, 0.01875], [1.5, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.6, 1.0], [1.2, 0.29583333333333334], [1.5, 1.0], [1.8, 1.0], [0.9, 0.022916666666666665], [1.5, 1.0], [1.2, 0.0020833333333333333], [1.8, 1.0], [0.6, 0.29583333333333334], [0.75, 1.0], [1.2, 1.0], [1.8, 1.0], [0.6, 0.008333333333333333], [0.75, 0.0020833333333333333], [1.8, 0.0020833333333333333], [1.2, 1.0], [2.4, 0.26458333333333334], [0.4, 0.27708333333333335], [1.7, 0.11875], [0.75, 1.0], [0.6, 1.0], [0.9, 1.0], [0.25, 0.0020833333333333333], [1.2, 1.0], [2.4, 0.0020833333333333333], [1.33, 0.010416666666666666], [1.8, 1.0], [1.33, 0.008333333333333333], [0.8, 1.0], [2.24, 1.0], [1.8, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.5, 0.004166666666666667], [0.5, 0.016666666666666666], [2.24, 0.28958333333333336], [1.12, 0.014583333333333334], [1.33, 1.0], [2.24, 0.004166666666666667], [0.6, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.33, 0.0020833333333333333], [0.4, 0.38958333333333334], [1.8, 1.0], [0.4, 0.0125], [1.8, 0.004166666666666667], [0.9, 0.0020833333333333333], [0.4, 0.36666666666666664], [1.2, 0.0125], [0.4, 1.0], [2.0, 0.0020833333333333333], [1.0, 0.004166666666666667], [1.6, 0.00625], [0.1, 0.30625], [0.1, 0.020833333333333332], [0.4, 0.23958333333333334], [0.6, 1.0], [0.8, 1.0], [0.6, 0.0125], [0.8, 1.0], [0.3, 0.0020833333333333333], [0.5, 0.004166666666666667], [0.4, 0.004166666666666667], [0.14, 0.26666666666666666], [2.24, 0.36666666666666664], [0.14, 0.014583333333333334], [2.24, 0.0020833333333333333], [1.5, 0.0020833333333333333], [0.28, 0.0020833333333333333], [0.14, 0.0020833333333333333], [1.7, 1.0], [0.3, 0.0875], [1.33, 0.008333333333333333], [0.4, 0.0020833333333333333], [1.12, 1.0], [2.0, 0.0020833333333333333], [0.9, 1.0], [0.6, 0.0020833333333333333], [0.14, 1.0], [1.8, 0.0020833333333333333], [0.5, 1.0], [0.8, 0.0020833333333333333], [1.0, 1.0], [1.2, 1.0], [1.6, 0.00625], [1.12, 0.37083333333333335], [0.75, 0.004166666666666667], [1.0, 1.0], [0.28, 0.2791666666666667], [0.42, 0.022916666666666665], [0.28, 0.0020833333333333333], [0.75, 0.2791666666666667], [1.5, 1.0], [1.0, 0.016666666666666666], [1.12, 1.0], [0.56, 0.00625], [1.5, 1.0], [0.75, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.0, 0.0020833333333333333], [0.14, 0.2520833333333333], [1.12, 0.375], [1.7, 1.0], [0.14, 0.016666666666666666], [0.28, 1.0], [1.0, 1.0], [0.84, 0.00625], [1.12, 1.0], [1.7, 0.0020833333333333333], [0.28, 1.0], [0.14, 1.0], [1.0, 0.0020833333333333333], [0.42, 0.01875], [0.56, 0.029166666666666667], [0.75, 1.0], [1.5, 1.0], [2.24, 1.0], [0.28, 0.4166666666666667], [0.7, 0.010416666666666666], [0.28, 1.0], [0.28, 0.2604166666666667], [0.42, 0.008333333333333333], [0.28, 1.0], [1.8, 0.24583333333333332], [1.7, 0.08333333333333333], [0.56, 0.020833333333333332], [1.7, 0.0020833333333333333], [1.5, 0.30833333333333335], [0.14, 0.325], [0.28, 1.0], [1.0, 1.0], [1.7, 1.0], [1.25, 0.008333333333333333], [0.28, 1.0], [1.7, 0.0020833333333333333], [0.14, 0.00625], [1.0, 1.0], [0.14, 0.2708333333333333], [0.14, 0.020833333333333332], [0.84, 0.3145833333333333], [1.0, 1.0], [1.4, 0.016666666666666666], [0.84, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.14, 0.15416666666666667], [0.094, 0.008333333333333333], [0.14, 0.004166666666666667], [0.094, 0.01875], [1.12, 0.43125], [0.75, 0.008333333333333333], [1.12, 0.0020833333333333333], [0.9, 1.0], [0.19, 0.004166666666666667], [0.7, 0.06666666666666667], [0.14, 1.0], [0.56, 0.0020833333333333333], [1.25, 1.0], [1.5, 0.0020833333333333333], [0.42, 1.0], [1.12, 1.0], [1.4, 1.0], [1.7, 1.0], [1.8, 0.0020833333333333333], [0.84, 1.0], [1.0, 0.022916666666666665], [0.28, 0.016666666666666666], [2.24, 0.375], [0.37, 0.21666666666666667], [2.24, 0.36875], [0.56, 0.00625], [2.24, 0.0020833333333333333], [0.42, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.75, 0.275], [0.75, 0.010416666666666666], [1.7, 0.008333333333333333], [2.0, 1.0], [0.44, 0.08333333333333333], [1.8, 0.20208333333333334], [2.24, 1.0], [0.28, 0.0020833333333333333], [2.24, 0.010416666666666666], [1.8, 0.004166666666666667], [1.8, 0.2875], [3.0, 0.00625], [1.8, 0.0020833333333333333], [0.14, 0.20416666666666666], [0.9, 0.0020833333333333333], [0.37, 1.0], [0.44, 0.004166666666666667], [1.8, 1.0], [0.75, 1.0], [2.0, 1.0], [0.14, 1.0], [3.0, 0.0020833333333333333], [2.24, 0.0020833333333333333], [0.19, 0.029166666666666667], [0.28, 1.0], [0.42, 1.0], [0.56, 1.0], [1.7, 0.014583333333333334], [0.28, 0.008333333333333333], [2.67, 0.0020833333333333333], [1.7, 1.0], [1.33, 0.48333333333333334], [2.24, 1.0], [0.56, 0.25833333333333336], [0.67, 0.03333333333333333], [0.84, 0.004166666666666667], [1.33, 0.13125], [1.33, 0.016666666666666666], [1.7, 0.04791666666666667], [1.7, 0.022916666666666665], [2.67, 0.08958333333333333], [2.67, 0.020833333333333332], [1.0, 0.004166666666666667], [0.56, 0.24583333333333332], [0.67, 1.0], [0.84, 1.0], [0.67, 0.020833333333333332], [0.56, 0.0020833333333333333], [0.84, 1.0], [0.67, 0.3625], [1.33, 1.0], [1.7, 1.0], [0.67, 0.020833333333333332], [1.33, 1.0], [1.7, 0.0020833333333333333], [1.5, 0.27291666666666664], [0.15, 0.175], [1.0, 0.004166666666666667], [2.67, 0.0020833333333333333], [0.56, 1.0], [0.28, 1.0], [0.84, 1.0], [2.24, 1.0], [0.67, 1.0], [1.5, 1.0], [1.7, 1.0], [1.33, 0.0020833333333333333], [3.0, 0.029166666666666667], [0.3, 1.0], [1.8, 0.0020833333333333333], [1.8, 0.46458333333333335], [1.8, 0.0125], [0.9, 1.0], [1.5, 0.0020833333333333333], [0.3, 0.25833333333333336], [0.3, 0.01875], [0.5, 0.0020833333333333333], [0.9, 0.29791666666666666], [1.5, 1.0], [0.75, 0.01875], [0.6, 1.0], [1.5, 1.0], [0.9, 0.00625], [0.3, 0.29583333333333334], [0.3, 0.010416666666666666], [1.7, 1.0], [0.84, 0.0020833333333333333], [0.15, 0.2916666666666667], [0.3, 1.0], [0.15, 0.008333333333333333], [0.3, 0.0020833333333333333], [0.9, 0.004166666666666667], [1.8, 1.0], [1.8, 0.0125], [0.9, 0.00625], [2.4, 0.2875], [1.2, 0.025], [0.3, 0.35833333333333334], [0.15, 0.004166666666666667], [0.11, 1.0], [0.6, 1.0], [2.4, 1.0], [1.2, 1.0], [0.75, 1.0], [0.5, 1.0], [0.84, 0.0020833333333333333], [0.22, 1.0], [1.7, 1.0], [1.5, 1.0], [0.11, 0.00625], [1.8, 1.0], [2.24, 0.008333333333333333], [1.8, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.33, 1.0], [0.9, 0.004166666666666667], [3.0, 1.0], [0.44, 0.2125], [2.0, 0.325], [1.0, 0.00625], [1.8, 0.22291666666666668], [1.8, 0.022916666666666665], [0.9, 0.010416666666666666], [1.33, 0.35208333333333336], [0.28, 1.0], [0.84, 0.004166666666666667], [0.14, 0.004166666666666667], [1.33, 1.0], [1.7, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.22, 0.004166666666666667], [0.44, 0.0020833333333333333], [0.9, 0.0020833333333333333], [1.12, 1.0], [2.0, 1.0], [1.8, 1.0], [2.24, 1.0], [1.0, 0.0020833333333333333], [0.28, 0.1125], [0.28, 0.022916666666666665], [0.84, 0.29583333333333334], [1.0, 1.0], [0.84, 0.0125], [1.0, 0.0125], [0.42, 0.03958333333333333], [0.9, 0.26666666666666666], [0.14, 0.2125], [0.14, 0.022916666666666665], [0.125, 0.0020833333333333333], [0.28, 1.0], [0.125, 0.022916666666666665], [0.25, 0.28125], [1.5, 1.0], [1.8, 0.0020833333333333333], [0.9, 0.0020833333333333333], [0.14, 1.0], [0.84, 0.0020833333333333333], [0.42, 1.0], [1.33, 1.0], [1.0, 0.022916666666666665], [1.7, 0.016666666666666666], [1.5, 0.43125], [0.25, 0.016666666666666666], [1.5, 0.00625], [1.2, 1.0], [0.25, 0.0020833333333333333], [0.25, 0.23125], [0.25, 0.022916666666666665], [0.6, 0.004166666666666667], [1.7, 0.00625], [0.5, 0.0020833333333333333], [1.33, 0.008333333333333333], [1.2, 0.35625], [1.5, 1.0], [1.8, 1.0], [1.8, 0.020833333333333332], [0.9, 1.0], [1.5, 1.0], [1.2, 0.0020833333333333333], [1.2, 0.3125], [1.5, 1.0], [1.8, 1.0], [0.75, 0.008333333333333333], [0.37, 1.0], [1.8, 0.0020833333333333333], [1.5, 0.0020833333333333333], [1.2, 0.004166666666666667], [0.37, 0.016666666666666666], [0.6, 0.2708333333333333], [1.2, 1.0], [0.5, 0.016666666666666666], [1.8, 1.0], [0.6, 0.008333333333333333], [1.2, 1.0], [1.8, 1.0], [0.5, 0.0020833333333333333], [1.2, 0.24583333333333332], [2.4, 0.010416666666666666], [1.2, 0.0020833333333333333], [0.25, 0.33125], [1.7, 1.0], [0.6, 1.0], [0.5, 1.0], [2.4, 1.0], [1.8, 1.0], [1.33, 0.0020833333333333333], [0.75, 1.0], [1.2, 1.0], [1.5, 1.0], [0.9, 0.020833333333333332], [0.8, 0.058333333333333334], [1.33, 1.0], [2.24, 1.0], [1.12, 0.0020833333333333333], [0.4, 0.004166666666666667], [2.24, 0.33541666666666664], [0.4, 0.016666666666666666], [0.8, 1.0], [1.12, 1.0], [1.33, 1.0], [2.24, 0.00625], [0.6, 0.004166666666666667], [0.8, 1.0], [1.12, 1.0], [1.33, 0.0020833333333333333], [0.4, 0.00625], [1.8, 0.041666666666666664], [0.4, 0.35625], [0.6, 1.0], [0.8, 1.0], [1.8, 1.0], [0.6, 0.008333333333333333], [0.4, 1.0], [0.9, 1.0], [0.8, 0.0020833333333333333], [1.8, 1.0], [0.4, 0.325], [2.0, 0.020833333333333332], [1.2, 1.0], [0.4, 1.0], [1.0, 0.0020833333333333333], [0.2, 0.0020833333333333333], [0.2, 0.2791666666666667], [0.2, 0.010416666666666666], [0.1, 0.004166666666666667], [0.1, 0.016666666666666666], [0.6, 0.25625], [0.8, 1.0], [0.6, 0.022916666666666665], [0.17, 1.0], [0.8, 1.0], [0.5, 0.0020833333333333333], [0.17, 0.00625], [0.14, 0.25], [0.14, 0.375], [2.24, 1.0], [1.12, 0.016666666666666666], [0.28, 1.0], [2.24, 0.004166666666666667], [0.14, 0.0020833333333333333], [1.5, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.7, 1.0], [0.2, 1.0], [0.9, 0.004166666666666667], [0.4, 1.0], [0.5, 1.0], [1.0, 1.0], [1.33, 1.0], [1.8, 1.0], [2.0, 1.0], [0.6, 1.0], [1.2, 1.0], [0.8, 0.025], [1.12, 0.33541666666666664], [1.12, 0.016666666666666666], [0.75, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.28, 0.25], [0.28, 0.008333333333333333], [0.42, 0.08125], [0.75, 0.2625], [1.0, 1.0], [1.12, 1.0], [1.5, 1.0], [1.5, 0.008333333333333333], [0.75, 0.0020833333333333333], [0.56, 0.0020833333333333333], [1.12, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.14, 0.28541666666666665], [0.14, 0.01875], [0.28, 0.31666666666666665], [1.0, 1.0], [1.7, 1.0], [1.7, 0.0125], [0.28, 1.0], [1.0, 0.010416666666666666], [1.12, 0.09583333333333334], [0.42, 0.0020833333333333333], [0.56, 1.0], [0.75, 1.0], [1.5, 1.0], [2.24, 1.0], [0.14, 0.008333333333333333], [1.0, 0.3854166666666667], [0.7, 0.008333333333333333], [1.12, 1.0], [1.0, 0.0020833333333333333], [0.42, 0.30416666666666664], [0.7, 0.30833333333333335], [1.0, 1.0], [1.12, 1.0], [0.7, 0.0125], [1.12, 0.0020833333333333333], [1.0, 0.004166666666666667], [0.56, 0.3333333333333333], [0.7, 0.35208333333333336], [1.0, 1.0], [1.12, 1.0], [0.7, 0.010416666666666666], [1.4, 0.004166666666666667], [1.0, 0.00625], [1.12, 0.0020833333333333333], [0.42, 0.23333333333333334], [0.42, 0.022916666666666665], [1.5, 0.39791666666666664], [0.75, 1.0], [0.19, 0.38125], [0.094, 0.004166666666666667], [0.19, 0.3625], [0.75, 1.0], [1.0, 1.0], [0.75, 0.008333333333333333], [0.19, 0.004166666666666667], [1.0, 1.0], [1.4, 0.0020833333333333333], [0.7, 1.0], [1.5, 1.0], [1.12, 1.0], [0.56, 1.0], [0.28, 0.010416666666666666], [1.7, 1.0], [0.42, 0.014583333333333334], [0.56, 0.26666666666666666], [0.19, 0.2916666666666667], [0.19, 0.020833333333333332], [0.75, 0.3958333333333333], [1.0, 1.0], [0.75, 0.020833333333333332], [1.0, 0.0020833333333333333], [0.56, 0.6333333333333333], [0.56, 0.014583333333333334], [0.19, 0.45], [0.19, 0.016666666666666666], [0.19, 0.3020833333333333], [0.75, 0.016666666666666666], [0.19, 0.0020833333333333333], [0.94, 0.008333333333333333], [0.75, 0.0020833333333333333], [1.0, 0.022916666666666665], [0.094, 0.09583333333333334], [1.5, 2.41875], [0.19, 0.029166666666666667], [0.56, 1.0], [0.75, 1.0], [0.94, 0.008333333333333333], [1.8, 0.008333333333333333], [2.24, 0.0625], [3.0, 0.0125], [4.5, 0.5958333333333333], [4.5, 0.66875], [4.5, 0.01875], [4.0, 0.07291666666666667], [4.5, 0.34375], [4.5, 0.010416666666666666], [6.0, 0.31875], [1.33, 0.06458333333333334], [1.7, 0.2125], [2.24, 0.03333333333333333], [2.24, 0.022916666666666665], [4.0, 0.058333333333333334], [4.0, 0.0125], [5.34, 0.010416666666666666], [4.5, 0.63125], [4.5, 0.022916666666666665], [3.36, 1.0], [4.0, 0.68125], [4.0, 0.0125], [1.2, 0.9458333333333333], [1.5, 0.03333333333333333], [1.5, 0.022916666666666665], [3.0, 0.004166666666666667], [1.7, 0.016666666666666666], [1.8, 0.00625], [1.33, 0.00625], [5.34, 0.008333333333333333], [6.0, 0.04791666666666667], [3.36, 0.04791666666666667], [1.8, 0.00625], [2.24, 0.010416666666666666], [3.0, 0.10625], [2.24, 0.010416666666666666], [4.0, 0.04375], [4.0, 0.0125], [6.0, 0.10833333333333334], [3.56, 0.625], [3.0, 0.6625], [3.0, 0.010416666666666666], [4.5, 0.29375], [3.36, 0.07291666666666667], [3.56, 0.29375], [3.56, 0.022916666666666665], [4.76, 0.33125], [1.8, 0.42916666666666664], [4.5, 0.004166666666666667], [2.67, 0.004166666666666667], [1.8, 0.004166666666666667], [1.12, 0.00625], [1.33, 0.0020833333333333333], [2.0, 0.0020833333333333333], [2.24, 0.0125], [1.5, 0.029166666666666667], [6.0, 1.0], [4.76, 0.014583333333333334], [4.0, 0.575], [4.0, 0.01875], [2.24, 0.00625], [2.67, 0.29583333333333334], [3.56, 1.0], [3.56, 0.008333333333333333], [2.67, 0.0020833333333333333], [3.36, 0.48541666666666666], [3.36, 0.008333333333333333], [3.0, 1.2708333333333333], [1.2, 0.05], [1.0, 0.0020833333333333333], [1.2, 0.01875], [1.5, 0.07916666666666666], [1.8, 0.010416666666666666], [1.8, 0.022916666666666665], [3.56, 0.025], [2.4, 0.0020833333333333333], [3.0, 0.008333333333333333], [3.56, 0.008333333333333333], [2.67, 0.00625], [2.0, 0.00625], [3.36, 1.0], [4.5, 0.0020833333333333333], [1.12, 0.0020833333333333333], [2.24, 0.022916666666666665], [4.0, 0.016666666666666666], [1.33, 0.2708333333333333], [3.56, 0.06458333333333334], [3.0, 0.33541666666666664], [3.0, 0.014583333333333334], [3.36, 0.3125], [2.67, 0.0020833333333333333], [2.4, 0.39166666666666666], [3.0, 1.0], [2.4, 0.010416666666666666], [3.0, 0.0020833333333333333], [3.56, 1.0], [2.4, 0.30625], [3.0, 1.0], [3.56, 1.0], [2.4, 0.01875], [3.56, 0.0020833333333333333], [3.0, 1.0], [3.56, 0.31666666666666665], [3.56, 0.0125], [4.76, 0.27708333333333335], [0.8, 0.325], [1.2, 0.10416666666666667], [1.2, 0.0125], [2.67, 0.035416666666666666], [2.24, 0.010416666666666666], [1.6, 0.0020833333333333333], [2.67, 1.0], [4.5, 0.00625], [0.8, 0.49375], [1.2, 1.0], [1.6, 1.0], [2.24, 1.0], [2.67, 1.0], [4.5, 1.0], [1.6, 0.016666666666666666], [2.67, 0.0020833333333333333], [4.5, 0.0020833333333333333], [1.2, 1.0], [0.8, 1.0], [2.24, 0.004166666666666667], [3.56, 0.39166666666666666], [1.8, 0.016666666666666666], [3.56, 0.00625], [1.8, 0.0020833333333333333], [0.4, 1.0], [0.4, 0.375], [2.4, 1.0], [2.0, 0.01875], [4.0, 0.0020833333333333333], [2.4, 1.0], [0.4, 0.0020833333333333333], [0.2, 1.0], [3.17, 1.0], [1.0, 0.39375], [1.2, 1.0], [1.6, 1.0], [1.8, 0.014583333333333334], [1.0, 0.004166666666666667], [1.6, 1.0], [1.2, 0.0020833333333333333], [1.8, 0.0020833333333333333], [0.2, 0.12083333333333333], [4.5, 0.175], [0.6, 0.19166666666666668], [0.4, 1.0], [0.2, 0.004166666666666667], [0.5, 0.004166666666666667], [0.4, 0.008333333333333333], [4.76, 0.4479166666666667], [2.24, 0.016666666666666666], [3.36, 1.0], [3.36, 0.022916666666666665], [2.24, 1.0], [0.14, 0.0020833333333333333], [0.28, 0.00625], [1.5, 0.03125], [3.0, 1.0], [1.2, 0.010416666666666666], [0.2, 1.0], [2.4, 0.0020833333333333333], [0.4, 0.004166666666666667], [4.0, 0.0020833333333333333], [0.6, 1.0], [2.67, 0.0020833333333333333], [0.5, 1.0], [1.0, 1.0], [3.56, 0.0020833333333333333], [3.17, 1.0], [0.8, 0.010416666666666666], [2.0, 1.0], [1.6, 0.014583333333333334], [2.24, 0.41458333333333336], [1.5, 0.004166666666666667], [2.24, 0.00625], [2.0, 0.004166666666666667], [0.28, 0.25833333333333336], [0.28, 0.008333333333333333], [0.42, 1.0], [0.75, 0.31666666666666665], [0.56, 0.0020833333333333333], [1.12, 0.008333333333333333], [1.0, 0.00625], [0.14, 0.26666666666666666], [0.16, 0.020833333333333332], [0.14, 0.0020833333333333333], [1.8, 0.28125], [0.14, 0.04791666666666667], [0.28, 1.0], [1.0, 1.0], [1.7, 0.008333333333333333], [0.28, 0.0020833333333333333], [0.14, 0.0020833333333333333], [1.12, 0.0020833333333333333], [1.0, 0.008333333333333333], [1.12, 1.0], [2.24, 0.01875], [0.75, 0.0020833333333333333], [0.42, 0.0020833333333333333], [2.0, 1.0], [0.56, 0.004166666666666667], [3.36, 0.00625], [0.16, 0.027083333333333334], [1.5, 1.0], [1.0, 0.4625], [1.12, 1.0], [1.12, 0.01875], [0.7, 1.0], [1.0, 0.004166666666666667], [0.28, 0.26666666666666666], [0.28, 0.014583333333333334], [0.84, 0.004166666666666667], [0.42, 0.004166666666666667], [0.7, 0.34375], [1.0, 1.0], [1.12, 1.0], [0.7, 0.014583333333333334], [0.28, 0.0020833333333333333], [1.12, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.56, 0.0020833333333333333], [0.28, 1.0], [0.7, 0.63125], [0.14, 0.016666666666666666], [0.28, 1.0], [1.0, 1.0], [1.12, 1.0], [1.4, 0.00625], [0.7, 0.0020833333333333333], [0.28, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.12, 0.004166666666666667], [0.14, 0.004166666666666667], [0.7, 0.5875], [0.84, 0.014583333333333334], [1.0, 1.0], [0.7, 0.008333333333333333], [1.0, 0.004166666666666667], [0.84, 0.008333333333333333], [0.094, 0.325], [0.19, 1.0], [0.28, 0.014583333333333334], [0.094, 0.008333333333333333], [0.19, 0.30416666666666664], [1.12, 0.06458333333333334], [1.12, 0.01875], [1.5, 0.0020833333333333333], [0.75, 1.0], [0.9, 0.004166666666666667], [0.19, 1.0], [1.7, 0.008333333333333333], [1.4, 0.0020833333333333333], [0.14, 1.0], [1.0, 1.0], [0.84, 0.008333333333333333], [0.42, 0.016666666666666666], [0.56, 1.0], [0.7, 1.0], [0.75, 0.03125], [0.28, 0.4708333333333333], [2.24, 0.008333333333333333], [4.5, 1.0], [0.37, 0.28541666666666665], [2.24, 0.30833333333333335], [4.5, 1.0], [4.5, 0.01875], [2.24, 0.0020833333333333333], [0.44, 1.0], [3.36, 0.30416666666666664], [0.56, 0.0020833333333333333], [4.0, 0.004166666666666667], [2.0, 0.0020833333333333333], [1.12, 0.016666666666666666], [2.24, 0.25625], [4.5, 1.0], [2.24, 0.022916666666666665], [4.5, 1.0], [0.75, 0.0020833333333333333], [6.0, 0.3020833333333333], [3.0, 1.0], [0.28, 0.44166666666666665], [3.36, 1.0], [5.34, 0.008333333333333333], [0.28, 1.0], [0.37, 1.0], [3.36, 0.0020833333333333333], [2.67, 1.0], [0.44, 1.0], [0.75, 1.0], [3.0, 1.0], [0.9, 1.0], [4.0, 1.0], [0.19, 0.0020833333333333333], [2.0, 1.0], [0.56, 1.0], [4.5, 1.0], [2.24, 0.0020833333333333333], [1.5, 0.0020833333333333333], [0.14, 0.00625], [6.0, 0.00625], [4.5, 0.5], [2.24, 1.0], [0.67, 0.325], [0.84, 0.0020833333333333333], [0.56, 1.0], [5.34, 0.29375], [2.67, 0.014583333333333334], [3.36, 1.0], [5.34, 0.008333333333333333], [3.36, 1.0], [2.67, 0.0020833333333333333], [1.0, 1.0], [2.24, 0.6145833333333334], [2.67, 1.0], [0.5, 0.022916666666666665], [2.24, 1.0], [2.67, 1.0], [0.15, 0.32083333333333336], [2.24, 0.00625], [2.67, 0.0020833333333333333], [5.34, 1.0], [1.0, 1.0], [0.84, 1.0], [0.5, 1.0], [0.56, 0.0020833333333333333], [0.14, 1.0], [0.28, 1.0], [3.36, 1.0], [4.5, 1.0], [0.67, 0.0020833333333333333], [0.15, 0.016666666666666666], [6.0, 0.004166666666666667], [0.3, 0.0020833333333333333], [3.0, 0.0020833333333333333], [3.56, 1.0], [0.15, 1.0], [3.0, 0.4479166666666667], [3.56, 1.0], [3.56, 0.010416666666666666], [1.8, 1.0], [3.0, 0.004166666666666667], [0.6, 0.32083333333333336], [0.9, 0.004166666666666667], [1.8, 0.26875], [3.0, 1.0], [6.0, 1.0], [2.4, 0.020833333333333332], [1.5, 1.0], [3.0, 1.0], [1.2, 1.0], [1.8, 0.0020833333333333333], [3.36, 0.3375], [1.7, 0.00625], [1.0, 1.0], [0.9, 0.2875], [1.8, 1.0], [3.56, 1.0], [3.56, 0.016666666666666666], [1.8, 0.004166666666666667], [0.9, 1.0], [2.4, 0.26875], [2.4, 0.01875], [4.76, 0.0020833333333333333], [1.7, 0.30833333333333335], [3.36, 1.0], [0.6, 1.0], [1.2, 1.0], [3.56, 1.0], [0.3, 0.0020833333333333333], [1.5, 1.0], [2.4, 1.0], [1.8, 1.0], [3.0, 1.0], [4.76, 1.0], [1.0, 0.0020833333333333333], [0.9, 1.0], [0.15, 0.0020833333333333333], [4.5, 0.05416666666666667], [0.22, 0.0020833333333333333], [0.11, 1.0], [2.67, 1.0], [2.24, 0.0020833333333333333], [0.11, 0.020833333333333332], [0.44, 0.21458333333333332], [0.67, 0.3104166666666667], [4.0, 1.0], [0.9, 0.004166666666666667], [2.0, 0.0020833333333333333], [3.56, 0.29375], [1.8, 1.0], [2.0, 0.36041666666666666], [2.67, 0.014583333333333334], [3.36, 0.00625], [2.0, 0.0020833333333333333], [1.7, 1.0], [0.28, 1.0], [0.14, 0.0020833333333333333], [2.67, 0.0020833333333333333], [0.44, 1.0], [0.9, 1.0], [4.0, 1.0], [3.56, 1.0], [4.5, 0.0020833333333333333], [2.24, 0.0020833333333333333], [1.8, 1.0], [0.67, 0.0020833333333333333], [0.22, 0.03333333333333333], [0.14, 0.016666666666666666], [0.33, 0.1375], [0.17, 0.004166666666666667], [1.7, 0.3229166666666667], [2.0, 0.016666666666666666], [2.67, 1.0], [0.42, 0.00625], [1.7, 1.0], [0.21, 0.0020833333333333333], [2.0, 1.0], [2.67, 1.0], [0.5, 0.3020833333333333], [0.25, 1.0], [0.25, 0.3770833333333333], [2.4, 0.008333333333333333], [3.56, 1.0], [1.8, 1.0], [0.25, 1.0], [0.125, 0.00625], [0.21, 0.008333333333333333], [0.17, 1.0], [0.28, 0.0020833333333333333], [2.67, 0.0020833333333333333], [2.0, 0.004166666666666667], [0.33, 1.0], [0.5, 0.0020833333333333333], [1.7, 0.0020833333333333333], [0.42, 1.0], [3.36, 0.0020833333333333333], [1.8, 0.36875], [2.4, 1.0], [2.4, 0.014583333333333334], [1.5, 0.0020833333333333333], [3.0, 0.0020833333333333333], [1.8, 1.0], [0.5, 0.2875], [3.36, 1.0], [1.7, 0.004166666666666667], [1.8, 0.3145833333333333], [3.56, 1.0], [3.56, 0.020833333333333332], [1.8, 1.0], [0.9, 0.0020833333333333333], [0.75, 1.0], [0.75, 0.29583333333333334], [1.8, 1.0], [3.56, 1.0], [0.75, 0.014583333333333334], [3.56, 0.00625], [1.8, 1.0], [0.25, 0.26666666666666666], [0.5, 1.0], [1.8, 1.0], [3.56, 1.0], [0.5, 0.0125], [0.25, 0.004166666666666667], [3.56, 0.00625], [1.8, 1.0], [4.76, 0.25833333333333336], [2.4, 0.008333333333333333], [2.4, 0.010416666666666666], [0.1, 0.35833333333333334], [0.2, 0.00625], [0.1, 0.008333333333333333], [0.2, 0.016666666666666666], [0.125, 0.0625], [1.7, 0.010416666666666666], [3.36, 1.0], [0.25, 1.0], [0.9, 1.0], [2.4, 1.0], [1.8, 1.0], [4.76, 0.0020833333333333333], [0.5, 1.0], [1.5, 1.0], [3.0, 1.0], [3.56, 1.0], [0.75, 0.020833333333333332], [4.5, 0.022916666666666665], [2.67, 0.0020833333333333333], [2.24, 0.004166666666666667], [2.24, 0.4166666666666667], [2.67, 1.0], [4.5, 1.0], [2.67, 0.0125], [0.4, 0.0020833333333333333], [0.6, 0.0020833333333333333], [4.5, 1.0], [2.24, 0.00625], [0.4, 0.3458333333333333], [0.4, 0.020833333333333332], [0.8, 0.0020833333333333333], [3.56, 1.0], [1.8, 1.0], [0.6, 0.36041666666666666], [0.8, 1.0], [0.8, 0.008333333333333333], [0.6, 1.0], [2.4, 1.0], [2.0, 0.0020833333333333333], [4.0, 1.0], [3.17, 0.004166666666666667], [0.4, 0.36875], [2.0, 1.0], [0.4, 0.0125], [2.0, 0.0020833333333333333], [1.6, 0.004166666666666667], [1.0, 0.0020833333333333333], [0.4, 0.46041666666666664], [0.4, 0.008333333333333333], [0.2, 1.0], [0.5, 0.0020833333333333333], [0.6, 0.0020833333333333333], [0.2, 0.0020833333333333333], [3.17, 0.0020833333333333333], [3.56, 1.0], [2.4, 1.0], [2.67, 0.0020833333333333333], [0.4, 1.0], [1.0, 1.0], [1.6, 1.0], [1.8, 1.0], [4.0, 1.0], [2.0, 0.0020833333333333333], [0.8, 1.0], [2.24, 0.010416666666666666], [4.5, 1.0], [0.5, 0.014583333333333334], [3.36, 0.0020833333333333333], [4.5, 1.0], [2.24, 0.004166666666666667], [0.28, 1.0], [0.14, 0.0020833333333333333], [3.0, 0.0020833333333333333], [2.24, 0.4], [1.5, 0.0125], [2.24, 1.0], [2.0, 0.008333333333333333], [0.42, 0.28958333333333336], [1.5, 0.29791666666666666], [2.0, 1.0], [2.24, 1.0], [3.0, 1.0], [1.5, 0.008333333333333333], [3.0, 1.0], [2.0, 0.0020833333333333333], [2.24, 1.0], [0.14, 0.27708333333333335], [0.14, 0.0125], [2.0, 0.33958333333333335], [3.36, 1.0], [0.28, 0.016666666666666666], [2.24, 1.0], [3.36, 0.00625], [2.0, 0.0020833333333333333], [0.28, 1.0], [2.24, 0.0020833333333333333], [0.42, 0.05625], [0.14, 1.0], [3.0, 0.0020833333333333333], [1.5, 0.0020833333333333333], [4.5, 0.008333333333333333], [0.7, 0.4895833333333333], [1.12, 0.0020833333333333333], [1.0, 0.008333333333333333], [0.28, 0.22083333333333333], [0.28, 0.01875], [0.7, 0.33125], [1.0, 1.0], [1.12, 1.0], [0.42, 0.008333333333333333], [1.12, 1.0], [0.7, 1.0], [1.0, 0.004166666666666667], [0.56, 0.31666666666666665], [0.7, 0.32708333333333334], [1.0, 1.0], [1.12, 1.0], [1.4, 0.008333333333333333], [0.7, 1.0], [1.12, 0.0020833333333333333], [1.0, 1.0], [0.14, 0.32083333333333336], [0.14, 0.35833333333333334], [0.28, 1.0], [0.7, 1.0], [1.0, 1.0], [1.12, 1.0], [0.42, 0.008333333333333333], [0.7, 0.00625], [0.28, 1.0], [1.12, 0.0020833333333333333], [1.0, 0.00625], [0.14, 1.0], [0.28, 0.8083333333333333], [1.12, 1.0], [1.12, 0.020833333333333332], [1.5, 1.0], [0.75, 0.0020833333333333333], [0.28, 1.0], [0.19, 0.0020833333333333333], [0.9, 1.0], [2.0, 0.10208333333333333], [0.14, 0.0125], [1.0, 0.004166666666666667], [1.4, 1.0], [0.7, 1.0], [0.28, 1.0], [3.36, 0.0020833333333333333], [0.56, 0.0125], [2.24, 1.0], [0.75, 0.19166666666666668], [4.5, 0.24166666666666667], [2.24, 0.0020833333333333333], [0.19, 0.2520833333333333], [0.37, 0.00625], [0.19, 0.004166666666666667], [2.24, 0.3416666666666667], [4.5, 1.0], [3.56, 0.00625], [2.24, 0.0020833333333333333], [0.44, 0.0020833333333333333], [4.5, 0.004166666666666667], [1.12, 0.03333333333333333], [0.56, 0.2625], [3.36, 1.0], [4.0, 0.010416666666666666], [2.0, 0.0020833333333333333], [0.44, 0.2375], [2.24, 0.014583333333333334], [4.5, 1.0], [0.44, 0.008333333333333333], [2.24, 0.014583333333333334], [4.5, 1.0], [6.0, 0.27291666666666664], [3.0, 1.0], [1.5, 0.3770833333333333], [3.36, 1.0], [0.37, 0.010416666666666666], [3.56, 1.0], [4.5, 1.0], [0.9, 1.0], [6.0, 0.0020833333333333333], [0.19, 1.0], [4.0, 1.0], [2.0, 1.0], [0.56, 1.0], [3.0, 0.0020833333333333333], [2.24, 1.0], [0.28, 0.008333333333333333], [3.36, 1.0], [5.34, 0.0020833333333333333], [0.14, 1.0], [2.67, 1.0], [0.44, 0.022916666666666665], [2.67, 0.4], [4.5, 0.01875], [2.67, 0.0020833333333333333], [2.24, 1.0], [0.67, 0.30416666666666664], [0.56, 0.0020833333333333333], [0.84, 1.0], [0.67, 0.3125], [2.67, 1.0], [3.36, 1.0], [5.34, 1.0], [0.67, 0.014583333333333334], [1.0, 1.0], [5.34, 1.0], [3.36, 0.0020833333333333333], [2.67, 0.004166666666666667], [0.5, 0.3416666666666667], [0.28, 0.29375], [2.24, 1.0], [2.67, 1.0], [0.28, 0.008333333333333333], [2.24, 1.0], [2.67, 0.004166666666666667], [0.14, 0.24375], [0.14, 0.022916666666666665], [2.24, 0.46875], [6.0, 0.0020833333333333333], [3.0, 1.0], [0.56, 1.0], [2.67, 0.0020833333333333333], [0.3, 1.0], [0.5, 0.0020833333333333333], [0.67, 1.0], [0.84, 1.0], [0.15, 1.0], [4.5, 0.0020833333333333333], [1.0, 1.0], [3.56, 1.0], [5.34, 1.0], [3.36, 1.0], [0.28, 0.008333333333333333], [0.14, 0.03333333333333333], [0.3, 0.4479166666666667], [3.56, 0.016666666666666666], [0.3, 0.004166666666666667], [1.8, 0.004166666666666667], [3.56, 1.0], [0.3, 0.3104166666666667], [0.3, 0.016666666666666666], [0.6, 0.0020833333333333333], [6.0, 0.20625], [3.0, 0.04791666666666667], [3.0, 0.014583333333333334], [1.5, 1.0], [1.2, 0.0020833333333333333], [0.9, 0.01875], [0.6, 0.2520833333333333], [0.6, 0.020833333333333332], [3.36, 0.0020833333333333333], [1.7, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.8, 0.29375], [3.56, 1.0], [3.56, 0.008333333333333333], [1.8, 0.004166666666666667], [2.4, 0.26875], [0.11, 1.0], [4.76, 1.0], [0.22, 0.0020833333333333333], [0.11, 0.020833333333333332], [1.7, 0.0020833333333333333], [3.36, 0.0020833333333333333], [1.2, 1.0], [0.3, 1.0], [1.5, 1.0], [3.0, 0.0020833333333333333], [0.6, 1.0], [1.0, 1.0], [1.8, 1.0], [3.56, 1.0], [0.9, 1.0], [0.15, 0.03958333333333333], [0.22, 0.04791666666666667], [4.76, 0.016666666666666666], [4.5, 0.004166666666666667], [0.22, 0.004166666666666667], [2.67, 0.0020833333333333333], [2.24, 0.0020833333333333333], [0.11, 0.0020833333333333333], [0.44, 0.33125], [2.67, 0.24583333333333332], [4.0, 0.008333333333333333], [2.67, 1.0], [0.9, 1.0], [2.0, 0.0020833333333333333], [3.56, 0.29375], [1.8, 0.004166666666666667], [2.4, 0.2833333333333333], [0.11, 0.06458333333333334], [2.0, 1.0], [2.67, 1.0], [3.36, 0.014583333333333334], [2.0, 0.004166666666666667], [0.28, 1.0], [1.7, 0.0020833333333333333], [0.14, 1.0], [2.67, 0.0020833333333333333], [4.0, 0.0020833333333333333], [0.44, 1.0], [2.24, 1.0], [4.5, 1.0], [3.56, 1.0], [0.22, 0.0020833333333333333], [1.8, 1.0], [0.9, 0.0020833333333333333], [0.33, 0.13958333333333334], [0.17, 0.010416666666666666], [1.7, 0.29791666666666666], [2.0, 1.0], [2.67, 1.0], [0.21, 0.008333333333333333], [1.7, 0.0020833333333333333], [0.42, 0.0020833333333333333], [2.67, 1.0], [2.0, 0.0020833333333333333], [0.28, 0.25833333333333336], [0.28, 0.010416666666666666], [0.25, 0.0020833333333333333], [0.5, 0.004166666666666667], [0.25, 0.43125], [0.17, 0.008333333333333333], [2.67, 1.0], [0.21, 1.0], [0.33, 0.0020833333333333333], [2.0, 1.0], [0.28, 1.0], [1.7, 1.0], [0.42, 1.0], [0.14, 1.0], [3.56, 0.0020833333333333333], [0.25, 0.004166666666666667], [1.8, 0.0020833333333333333], [3.36, 0.0020833333333333333], [0.125, 0.0020833333333333333], [2.4, 1.0], [0.5, 0.008333333333333333], [2.67, 0.26458333333333334], [2.4, 0.13541666666666666], [1.8, 0.016666666666666666], [2.4, 0.0020833333333333333], [3.0, 0.004166666666666667], [1.5, 1.0], [1.8, 0.0020833333333333333], [0.25, 0.3125], [0.5, 0.010416666666666666], [3.36, 1.0], [0.25, 0.0020833333333333333], [1.7, 0.004166666666666667], [0.5, 0.31875], [1.8, 1.0], [3.56, 1.0], [0.75, 0.014583333333333334], [3.56, 0.004166666666666667], [0.5, 0.0020833333333333333], [1.8, 1.0], [0.6, 0.004166666666666667], [0.25, 0.3104166666666667], [0.5, 0.016666666666666666], [1.8, 1.0], [3.56, 1.0], [0.25, 0.00625], [0.5, 0.0020833333333333333], [1.8, 1.0], [3.56, 1.0], [0.5, 0.24791666666666667], [1.8, 1.0], [3.56, 1.0], [0.5, 0.016666666666666666], [3.56, 0.0020833333333333333], [1.8, 0.0020833333333333333], [2.4, 0.29791666666666666], [4.76, 0.0125], [2.4, 0.00625], [0.1, 0.34375], [0.2, 1.0], [0.1, 0.022916666666666665], [0.2, 1.0], [0.25, 0.05625], [3.36, 1.0], [1.7, 1.0], [4.76, 0.0020833333333333333], [0.75, 1.0], [1.5, 1.0], [3.56, 1.0], [0.5, 1.0], [2.4, 1.0], [3.0, 1.0], [1.8, 1.0], [0.125, 0.0020833333333333333], [0.6, 1.0], [2.67, 0.0020833333333333333], [4.5, 0.041666666666666664], [2.67, 0.00625], [2.24, 1.0], [2.24, 0.36875], [2.67, 1.0], [0.6, 0.016666666666666666], [0.4, 1.0], [2.24, 0.0020833333333333333], [2.67, 0.0020833333333333333], [0.8, 0.425], [3.56, 1.0], [1.8, 0.0020833333333333333], [0.8, 0.35208333333333336], [2.4, 0.010416666666666666], [1.6, 0.0020833333333333333], [0.8, 1.0], [4.0, 1.0], [2.0, 0.0020833333333333333], [3.17, 0.004166666666666667], [0.4, 0.49375], [0.8, 1.0], [0.4, 0.020833333333333332], [1.0, 0.0020833333333333333], [0.8, 1.0], [0.6, 0.010416666666666666], [0.4, 0.07916666666666666], [0.8, 1.0], [0.8, 0.025], [0.5, 1.0], [0.4, 1.0], [0.2, 1.0], [4.5, 0.45625], [2.24, 0.1125], [3.36, 0.008333333333333333], [4.5, 1.0], [0.28, 1.0], [2.24, 0.0020833333333333333], [0.14, 1.0], [0.2, 0.00625], [2.67, 1.0], [3.0, 1.0], [0.4, 1.0], [2.4, 1.0], [3.56, 1.0], [4.0, 1.0], [3.17, 1.0], [1.8, 1.0], [2.0, 1.0], [1.6, 0.0020833333333333333], [1.0, 1.0], [0.8, 0.022916666666666665], [0.5, 0.014583333333333334], [3.0, 0.07916666666666666], [2.24, 0.35208333333333336], [1.5, 0.010416666666666666], [2.24, 0.00625], [2.0, 0.0020833333333333333], [4.5, 0.029166666666666667], [0.28, 0.23958333333333334], [0.42, 0.020833333333333332], [0.28, 0.004166666666666667], [1.5, 0.2791666666666667], [0.28, 0.016666666666666666], [2.0, 1.0], [2.24, 1.0], [1.5, 0.004166666666666667], [3.0, 0.0020833333333333333], [2.24, 0.0020833333333333333], [0.28, 0.0020833333333333333], [2.0, 0.004166666666666667], [0.14, 0.28958333333333336], [0.14, 0.022916666666666665], [0.28, 0.3125], [3.36, 1.0], [2.0, 0.016666666666666666], [2.24, 1.0], [3.36, 0.00625], [0.28, 1.0], [2.0, 0.0020833333333333333], [2.24, 1.0], [0.42, 0.0020833333333333333], [3.0, 0.0020833333333333333], [1.5, 1.0], [0.7, 0.5416666666666666], [1.12, 1.0], [1.0, 0.00625], [0.28, 0.20416666666666666], [0.28, 0.008333333333333333], [0.7, 0.375], [1.12, 1.0], [1.0, 0.016666666666666666], [1.12, 0.00625], [0.7, 1.0], [0.42, 1.0], [1.0, 0.004166666666666667], [0.56, 0.2375], [0.28, 0.4395833333333333], [0.7, 1.0], [1.0, 1.0], [1.12, 1.0], [1.4, 0.008333333333333333], [0.7, 1.0], [0.14, 0.008333333333333333], [1.12, 1.0], [0.28, 0.00625], [1.0, 1.0], [0.14, 0.0020833333333333333], [0.42, 0.04791666666666667], [3.36, 1.0], [0.56, 0.05625], [2.0, 1.0], [2.24, 1.0], [0.14, 0.6541666666666667], [0.28, 1.0], [0.7, 1.0], [1.0, 1.0], [1.12, 1.0], [1.12, 0.010416666666666666], [0.7, 1.0], [0.28, 0.0020833333333333333], [0.14, 0.0020833333333333333], [1.0, 1.0], [0.3, 1.2541666666666667], [0.75, 0.0020833333333333333], [0.15, 0.0020833333333333333], [0.14, 0.0020833333333333333], [0.28, 0.0020833333333333333], [1.0, 0.0020833333333333333], [1.12, 1.0], [0.7, 1.0], [1.4, 1.0], [1.12, 0.18125], [1.0, 0.38125], [1.12, 0.26875], [1.12, 0.01875], [0.6, 0.020833333333333332], [0.9, 0.175], [1.12, 0.16875], [1.12, 0.025], [1.5, 0.08125], [3.0, 1.0], [2.67, 0.07083333333333333], [2.67, 0.014583333333333334], [2.24, 0.27708333333333335], [2.0, 0.31875], [2.24, 0.3], [2.24, 0.014583333333333334], [0.17, 0.38125], [0.33, 0.06458333333333334], [0.84, 0.00625], [1.0, 1.0], [1.12, 1.0], [0.15, 1.0], [0.9, 1.0], [2.24, 1.0], [1.5, 1.0], [0.75, 1.0], [0.6, 0.0020833333333333333], [3.0, 1.0], [2.0, 1.0], [0.3, 0.004166666666666667], [1.12, 0.035416666666666666], [1.0, 0.28958333333333336], [1.12, 0.21875], [1.12, 0.014583333333333334], [0.67, 0.08958333333333333], [1.0, 0.12083333333333333], [1.0, 0.010416666666666666], [1.33, 0.15833333333333333], [3.36, 0.05], [1.7, 0.00625], [2.24, 0.31875], [2.0, 0.3020833333333333], [2.24, 0.28958333333333336], [2.24, 0.0125], [0.19, 0.26458333333333334], [0.37, 0.1125], [0.9, 0.0020833333333333333], [3.36, 0.016666666666666666], [0.67, 0.0020833333333333333], [1.12, 1.0], [1.7, 1.0], [2.24, 1.0], [1.33, 0.0020833333333333333], [1.0, 1.0], [0.33, 1.0], [0.17, 0.004166666666666667], [2.0, 1.0], [0.84, 0.0125], [1.12, 0.15], [1.0, 0.26666666666666666], [1.12, 0.23958333333333334], [1.12, 0.016666666666666666], [0.75, 0.12916666666666668], [3.56, 0.2604166666666667], [1.8, 1.0], [2.24, 0.32708333333333334], [2.0, 0.35], [2.24, 0.27708333333333335], [2.24, 0.010416666666666666], [1.5, 0.3375], [2.0, 0.035416666666666666], [3.36, 0.016666666666666666], [2.0, 0.0020833333333333333], [3.56, 0.49375], [2.0, 0.014583333333333334], [3.56, 0.008333333333333333], [2.0, 0.0020833333333333333], [2.0, 0.3416666666666667], [3.36, 1.0], [3.36, 0.010416666666666666], [2.0, 0.004166666666666667], [0.75, 0.24166666666666667], [0.75, 0.014583333333333334], [1.5, 0.1625], [1.8, 1.0], [3.0, 0.008333333333333333], [1.8, 1.0], [1.5, 0.0020833333333333333], [1.12, 0.14791666666666667], [1.12, 0.0125], [2.24, 0.13333333333333333], [2.24, 0.008333333333333333], [1.8, 0.29375], [1.8, 0.008333333333333333], [1.5, 0.29583333333333334], [1.5, 0.0125], [0.15, 0.10833333333333334], [3.56, 0.0020833333333333333], [1.8, 1.0], [0.37, 1.0], [0.9, 1.0], [1.0, 1.0], [2.0, 1.0], [3.0, 0.0020833333333333333], [2.24, 1.0], [1.5, 1.0], [3.36, 1.0], [0.19, 0.0020833333333333333], [1.12, 0.004166666666666667], [0.75, 0.04375], [0.75, 0.01875], [0.3, 0.0020833333333333333], [0.15, 0.08125], [1.12, 0.17291666666666666], [1.0, 0.28541666666666665], [1.12, 0.24583333333333332], [1.12, 0.016666666666666666], [0.6, 0.04375], [0.9, 0.13333333333333333], [1.2, 0.13333333333333333], [1.5, 0.11041666666666666], [3.0, 1.0], [2.24, 0.3333333333333333], [2.0, 0.3104166666666667], [2.24, 0.2625], [2.24, 0.008333333333333333], [0.17, 0.24583333333333332], [0.84, 0.12083333333333333], [1.2, 0.0020833333333333333], [0.6, 1.0], [2.24, 1.0], [0.9, 1.0], [1.0, 1.0], [0.75, 1.0], [1.12, 0.0020833333333333333], [1.5, 0.0020833333333333333], [3.0, 0.0020833333333333333], [2.0, 1.0], [0.3, 0.0020833333333333333], [1.12, 0.13541666666666666], [1.0, 0.29583333333333334], [1.12, 0.225], [1.12, 0.016666666666666666], [0.67, 0.05625], [1.0, 0.15208333333333332], [1.0, 0.010416666666666666], [1.33, 0.010416666666666666], [3.36, 0.18333333333333332], [1.7, 0.004166666666666667], [2.24, 0.32708333333333334], [2.0, 0.2916666666666667], [2.24, 0.30833333333333335], [2.24, 0.008333333333333333], [0.19, 0.14166666666666666], [0.67, 0.15833333333333333], [2.24, 1.0], [1.12, 0.0020833333333333333], [1.0, 1.0], [1.33, 1.0], [3.36, 1.0], [0.84, 1.0], [1.7, 1.0], [2.0, 0.0020833333333333333], [0.17, 0.008333333333333333], [0.9, 0.014583333333333334], [0.37, 0.0020833333333333333], [1.12, 0.16041666666666668], [1.0, 0.30625], [1.12, 0.2520833333333333], [1.12, 0.014583333333333334], [0.75, 0.17291666666666666], [1.5, 0.20208333333333334], [1.8, 1.0], [3.56, 1.0], [2.24, 0.3125], [1.0, 0.3375], [1.0, 0.014583333333333334], [2.0, 0.0020833333333333333], [2.24, 0.23958333333333334], [2.24, 0.022916666666666665], [1.12, 0.41041666666666665], [4.0, 0.004166666666666667], [2.4, 0.0020833333333333333], [1.12, 0.004166666666666667], [2.24, 0.46875], [3.56, 0.016666666666666666], [2.24, 0.008333333333333333], [3.56, 1.0], [2.0, 0.375], [3.36, 0.0125], [2.0, 0.00625], [1.5, 0.39791666666666664], [2.24, 0.014583333333333334], [3.56, 1.0], [1.5, 0.00625], [3.56, 0.0020833333333333333], [2.24, 0.0020833333333333333], [2.0, 0.42291666666666666], [3.36, 1.0], [3.36, 0.010416666666666666], [2.0, 0.004166666666666667], [0.19, 0.05], [0.37, 1.0], [0.9, 1.0], [1.8, 0.33541666666666664], [3.0, 0.022916666666666665], [1.8, 1.0], [0.3, 0.31875], [1.5, 1.0], [0.75, 0.0020833333333333333], [1.8, 1.0], [3.0, 1.0], [3.56, 1.0], [2.24, 0.0020833333333333333], [2.4, 1.0], [1.0, 1.0], [2.0, 1.0], [1.12, 0.0020833333333333333], [4.0, 1.0], [3.36, 1.0], [1.5, 0.004166666666666667], [2.24, 0.14583333333333334], [2.0, 0.32083333333333336], [2.24, 0.26875], [2.24, 0.010416666666666666], [1.2, 0.12916666666666668], [1.8, 0.09166666666666666], [2.4, 0.014583333333333334], [3.0, 0.09583333333333334], [6.0, 0.0020833333333333333], [4.5, 0.29791666666666666], [4.0, 0.29791666666666666], [4.5, 0.27708333333333335], [4.5, 0.022916666666666665], [0.33, 0.3145833333333333], [2.24, 0.008333333333333333], [1.2, 1.0], [1.5, 0.0020833333333333333], [4.5, 1.0], [2.4, 1.0], [1.8, 0.0020833333333333333], [2.0, 1.0], [0.3, 0.0020833333333333333], [4.0, 0.0020833333333333333], [3.0, 0.0020833333333333333], [0.67, 0.004166666666666667], [1.7, 0.008333333333333333], [6.0, 0.014583333333333334], [2.24, 0.125], [2.0, 0.2916666666666667], [2.24, 0.2875], [2.24, 0.010416666666666666], [1.33, 0.1125], [2.0, 0.06875], [2.0, 0.01875], [2.67, 0.05416666666666667], [3.36, 0.09166666666666666], [4.5, 0.3541666666666667], [4.0, 0.25], [4.5, 0.2708333333333333], [4.5, 0.01875], [0.37, 0.26458333333333334], [0.75, 0.03958333333333333], [2.24, 0.008333333333333333], [1.7, 1.0], [3.36, 0.0020833333333333333], [4.5, 0.0020833333333333333], [0.75, 0.0020833333333333333], [0.33, 0.0020833333333333333], [1.33, 0.0020833333333333333], [2.67, 1.0], [4.0, 0.00625], [1.8, 0.01875], [2.0, 0.0020833333333333333], [0.67, 0.016666666666666666], [2.24, 0.15833333333333333], [2.0, 0.3125], [2.24, 0.26458333333333334], [2.24, 0.025], [1.5, 0.13541666666666666], [2.24, 0.09583333333333334], [2.24, 0.022916666666666665], [1.8, 0.058333333333333334], [7.13, 0.06041666666666667], [4.5, 0.3375], [4.0, 0.2916666666666667], [4.5, 0.2708333333333333], [4.5, 0.022916666666666665], [3.0, 0.33125], [4.0, 0.029166666666666667], [6.73, 0.022916666666666665], [4.0, 1.0], [7.13, 0.425], [7.13, 0.022916666666666665], [2.24, 0.16875], [2.24, 0.010416666666666666], [4.0, 0.21458333333333332], [6.73, 1.0], [6.73, 0.014583333333333334], [4.0, 0.008333333333333333], [3.0, 0.36041666666666666], [3.0, 0.014583333333333334], [6.0, 0.022916666666666665], [3.56, 0.035416666666666666], [4.0, 0.2625], [4.5, 1.0], [4.0, 0.014583333333333334], [4.5, 0.00625], [3.56, 0.3], [3.56, 0.020833333333333332], [3.0, 0.26666666666666666], [3.0, 0.0125], [0.3, 0.33125], [0.6, 0.0020833333333333333], [6.0, 0.014583333333333334], [4.5, 0.0020833333333333333], [4.0, 1.0], [3.56, 1.0], [3.0, 0.0020833333333333333], [2.24, 0.0020833333333333333], [2.0, 1.0], [0.37, 0.00625], [6.73, 0.010416666666666666], [1.5, 0.008333333333333333], [7.13, 1.0], [1.5, 0.008333333333333333], [2.24, 0.36041666666666666], [2.0, 0.22916666666666666], [2.24, 0.26666666666666666], [2.24, 0.008333333333333333], [1.2, 0.0625], [1.8, 0.17916666666666667], [2.4, 0.1], [6.0, 0.05416666666666667], [3.0, 0.004166666666666667], [4.5, 0.31666666666666665], [4.0, 0.31875], [4.5, 0.3], [4.5, 0.01875], [1.8, 0.008333333333333333], [1.2, 0.004166666666666667], [2.4, 1.0], [2.0, 0.0020833333333333333], [2.24, 1.0], [1.5, 1.0], [3.0, 0.004166666666666667], [4.5, 1.0], [0.3, 1.0], [4.0, 1.0], [0.6, 0.01875], [0.67, 0.00625], [0.33, 0.035416666666666666], [6.0, 0.00625], [1.7, 0.008333333333333333], [2.24, 0.075], [2.0, 0.2708333333333333], [2.24, 0.2791666666666667], [2.24, 0.014583333333333334], [1.33, 0.30833333333333335], [6.73, 0.0625], [3.36, 0.008333333333333333], [4.5, 0.3333333333333333], [4.0, 0.28541666666666665], [4.5, 0.26666666666666666], [4.5, 0.022916666666666665], [2.24, 1.0], [3.36, 0.004166666666666667], [4.0, 1.0], [4.5, 0.0020833333333333333], [1.7, 1.0], [2.0, 0.0020833333333333333], [6.73, 1.0], [1.33, 1.0], [0.67, 0.0020833333333333333], [0.33, 0.00625], [0.28, 0.025], [1.12, 0.30833333333333335], [1.5, 0.3625], [1.7, 0.3104166666666667], [2.24, 0.4270833333333333], [3.0, 0.30416666666666664], [3.36, 0.3958333333333333], [2.24, 0.41041666666666665], [2.24, 0.016666666666666666], [4.5, 0.50625], [6.0, 0.11041666666666666], [6.73, 0.08333333333333333], [8.98, 0.11875], [0.28, 4.49375], [1.12, 1.0], [1.5, 1.0], [1.7, 1.0], [2.24, 1.0], [3.0, 1.0], [3.36, 1.0], [4.5, 1.0], [6.0, 1.0], [6.73, 1.0], [8.98, 1.0]] +10:07:55 刷新音轨2 +10:09:56 退出 +10:10:07 程序正常退出 diff --git a/log/2022-01-19 10_10_25.msct.log b/log/2022-01-19 10_10_25.msct.log new file mode 100644 index 0000000..b15cc81 --- /dev/null +++ b/log/2022-01-19 10_10_25.msct.log @@ -0,0 +1,6 @@ +10:10:25 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\框架\v0.1.0-not my updata\Musicreater.py +10:10:26 启动root.mainloop(窗口) +10:10:33 无法打开L:/0WorldMusicCreater-MFMS new edition/框架/v0.1.0-not my updata/test.msct +10:10:54 刷新音轨2 +10:11:32 退出 +10:11:32 程序正常退出 diff --git a/log/2022-01-19 10_12_45.msct.log b/log/2022-01-19 10_12_45.msct.log new file mode 100644 index 0000000..fffc3ce --- /dev/null +++ b/log/2022-01-19 10_12_45.msct.log @@ -0,0 +1,4 @@ +10:12:45 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\框架\v0.1.0-not my updata\Musicreater.py +10:12:45 启动root.mainloop(窗口) +10:13:18 退出 +10:13:18 程序正常退出 diff --git a/logs/amulet_core.log b/logs/amulet_core.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/pymctranslate.log b/logs/pymctranslate.log new file mode 100644 index 0000000..b7640d4 --- /dev/null +++ b/logs/pymctranslate.log @@ -0,0 +1 @@ +2022-01-19 10:12:58,079 - pymctranslate - INFO - PyMCTranslate Version 139 diff --git a/msctspt/__pycache__/__init__.cpython-39.pyc b/msctspt/__pycache__/__init__.cpython-39.pyc index 7a15a93..1618cc5 100644 Binary files a/msctspt/__pycache__/__init__.cpython-39.pyc and b/msctspt/__pycache__/__init__.cpython-39.pyc differ diff --git a/msctspt/__pycache__/bugReporter.cpython-39.pyc b/msctspt/__pycache__/bugReporter.cpython-39.pyc index 035dcbe..81e0ce2 100644 Binary files a/msctspt/__pycache__/bugReporter.cpython-39.pyc and b/msctspt/__pycache__/bugReporter.cpython-39.pyc differ diff --git a/msctspt/__pycache__/threadOpera.cpython-39.pyc b/msctspt/__pycache__/threadOpera.cpython-39.pyc index d42baa1..47fc304 100644 Binary files a/msctspt/__pycache__/threadOpera.cpython-39.pyc and b/msctspt/__pycache__/threadOpera.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/__init__.cpython-39.pyc b/nmcsup/__pycache__/__init__.cpython-39.pyc index ab1ed7f..50caa78 100644 Binary files a/nmcsup/__pycache__/__init__.cpython-39.pyc and b/nmcsup/__pycache__/__init__.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/const.cpython-39.pyc b/nmcsup/__pycache__/const.cpython-39.pyc index bf7c4fa..67d6277 100644 Binary files a/nmcsup/__pycache__/const.cpython-39.pyc and b/nmcsup/__pycache__/const.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/log.cpython-39.pyc b/nmcsup/__pycache__/log.cpython-39.pyc index 9d4bdfd..386b007 100644 Binary files a/nmcsup/__pycache__/log.cpython-39.pyc and b/nmcsup/__pycache__/log.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/nmcreader.cpython-39.pyc b/nmcsup/__pycache__/nmcreader.cpython-39.pyc index 99038e2..3a59181 100644 Binary files a/nmcsup/__pycache__/nmcreader.cpython-39.pyc and b/nmcsup/__pycache__/nmcreader.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/trans.cpython-39.pyc b/nmcsup/__pycache__/trans.cpython-39.pyc index 762587c..2be7a56 100644 Binary files a/nmcsup/__pycache__/trans.cpython-39.pyc and b/nmcsup/__pycache__/trans.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/vers.cpython-39.pyc b/nmcsup/__pycache__/vers.cpython-39.pyc index 2ada10a..31b6a25 100644 Binary files a/nmcsup/__pycache__/vers.cpython-39.pyc and b/nmcsup/__pycache__/vers.cpython-39.pyc differ