ࡱ> ` 'bjbjss .Y%B2B2B28z2V3w44"(4(4(4666${h85@688(4(41.@.@.@8J8(4(4.@8.@.@jNx }(43 ФD]B2;dXz2G0wz&yj>fyd}}yR~66|.@A7d7666?^666w8888*0D0 Hong Kong University of Science and Technology COMP685B: Computer Music Spring 2006 Midterm Examination Student Name: key  Student ID:  Instructions: This is a closed-book, closed-notes examination. Check that you have all 7 pages (including this cover page). Answer all questions in the space provided. Rough work should be done on the back pages. PageScore2/153/154/155/156/157/25Total /100 All short-answer questions are 3 marks. 1) [Waveforms] A waveform with a period of 0.025 seconds has what frequency? Answer: 40 Hz 2) [Waveforms] If a tone at 16000 Hz is above the Nyquist frequency and below the sample rate and it folds over to sound like 4000 Hz due to aliasing, what is the sample rate? Answer: 20,000 Hz 3) [Acoustics] What is the fundamental frequency if the 3rd harmonic is at 900 Hz? Answer: 300 Hz 4) [Spectrum analysis] Which one of the following is NOT correct? a. Windowing is used to correct an inaccurate user-specified fundamental frequency. b. After windowing, windowed samples have non-zero amplitude at the end-points c. Windowing is used to avoid discontinuity Answer: b 5) [Additive synthesis] Which of the following best describes additive synthesis? a. Additive synthesis adds a weighted sum of harmonic sine waves b. Additive synthesis adds a weighted sum of different instrument tones c. Additive synthesis adds a weighted sum of wavetables Answer: a 6) [CSound basics] The following is a Csound header, please fill in the blank. sr = 22050 kr = _______ ksmps = 10 nchnls = 2 Answer: 2205 7) [CSound basics] Fill in the blank in the following Csound score, where this sine wave sustains at the peak amplitude for 1.5 second. ;p1 p2 p3 p4 p5 p6 p7 ; st dur amp freq attck decay i1 1 2 3000 200 0.1 _____ e Answer: 0.4 8) [CSound basics] Which of the following is a valid Csound orchestra statement? a. ampenv linseg 0, iattack, iamp, isustain, iamp, idecay, 0 b. impenv linseg 0, iattack, iamp, isustain, iamp, idecay, 0 c. impenv linseg 0, attack, amp, sustain, amp, decay, 0 d. mmpenv linseg 0, iattack, iamp, isustain, iamp, idecay, 0 Answer: a 9) [CSound basics] What is the difference between these two variables? ifreq, gifreq Answer: ifreq is a local (initial) variable, gifreq is a global (initial) variable. 10) [Meter] In the following CSound tempo statement: t0 128 100 80 does the tempo become faster or slower? Answer: slower 11) [Pitch] If we synthesize and playback a tone at 10 Hz, what do we hear? Answer: Clicks 12) [Pitch] Among the following frequencies, what is the highest frequency that most people can hear? a. 440Hz b. 5500Hz c. 8000Hz d. 17000Hz e. 30000Hz Answer: d Question 13-14 refer to this f-statement: f1 0 64 10 .5 .25 .125 13) [Wavetable synthesis] What is the amplitude of the 2nd harmonic in the wavetable? Answer: 0.25 14) [Wavetable synthesis] What does the 3rd entry 64 mean? Answer: The length of the wavetable is 64. 15) [Wavetable synthesis] Is the following f-statement valid? Why? f1 0 80 10 .5 .25 .125 Answer: No. the length (80) must be of power of 2, or power of 2 plus one. 16) [Wavetable synthesis] Refer to the following f-statement, f1 0 128 -12 5 4 3 2 1 0 What does the negative sign of -12 mean? a. allow the use of floating point values for amplitude b. skip normalization c. allow using negative values for amplitude d. none of the above. It is an invalid f-statement. Answer: b 17) [FM synthesis] Fill in the blank: When vibrato rate is in the audio range (faster than _____ Hz), it is no longer a vibrato, but becomes a modulation frequency of FM synthesis. Answer: 20Hz 18) [FM synthesis] Is the following statement true? If the modulation frequency is held constant, and the modulation index is increased, the bandwidth of the FM signal increases. Answer: yes 19) [FM synthesis] For a simple formant FM instrument with the carrier frequency set to the 3rd harmonic, which sidebands will contribute to the amplitude of the 5th harmonic? Answer: The 2nd and the -8th. 20) [FM Synthesis] You are given a FM instrument with carrier frequency of 200Hz, and modulator frequency of 280Hz. What is the fundamental frequency of the output? Answer: 40Hz 21) [Voice] What is the amplitude of a voice with 100dB, if the reference amplitude is 1? Answer: 100000 22) [Filter] Which of the following is commonly used to brighten signal? a. Low Pass Filter b. High Pass Filter c. Band Pass Filter d. Band Stop filter Answer: b 23) [Filter] What filter is commonly used to remove electric hum? Answer: Band Stop filter 24) [Comb filter] Does comb filter change the fundamental frequency of the signal applied on? Answer: No 25) [Effect] Which of the following can be used as effects? I. Chrous II. Reverb III. wavetable synthesis IV. All Pass Filter a. III only b. I, II and IV only c. I, II and III only d. all the above Answer: b. 26) [CSound Programming] [25marks] Fill in the blanks to produce a simple additive synthesis trumpet tone with vibrato. (trumpet.orc shows a CSound orchestra file, trumpet.sco shows a CSound score file.) - The fundamental frequency is 440 hertz - The 1st, 2nd, 3rd, 4th harmonics have amplitudes of 452, 168, 566, 464 Hz respectively - the vibrato rate increases from 2 Hz to 5 Hz, over the 2.63-second duration. - the vibrato width decreases from 3% to 1% of the fundamental frequency, over the 2.63-second duration. ;-------------- -------------------------------------------------------------------------------------------- ; trumpet.sco ______________ ;(1) ; istart idur iamp ifreq iattck idecay i1 1 2.630 ____ ____ .1812 .7248 ;(2) i1 1 2.630 ____ ____ .3624 .5436 ;(3) i1 1 2.630 ____ ____ .1812 .7248 ;(4) i1 1 2.630 ____ ____ .2718 .6342 ;(5) ___ ;(6) ;-------------- -------------------------------------------------------------------------------------------- ; trumpet.orc sr = _______ ;(7) kr = 2205 ksmps = 10 nchnls = 1 instr 1 idur = _______ ;(8) iamp = _______ ;(9) ifreq = _______ ;(10) iattack = _______ ;(11) idecay = _______ ;(12) kvrate linseg __________________ ; vibrato rate ;(13) kvwidth linseg __________________ ; vibrato width ;(14) avib oscili __________________ ; the vibrato signal ;(15) aenv linseg ___________________ ; amplitude envelope ;(16) asig oscili ___________________ ; the signal ;(17) out _____ ; output ;(18) _____ ;(19) ;-------------- -------------------------------------------------------------------------------------------- Answer: ;-------------- -------------------------------------------------------------------------------------------- ;Trumpet.sco f1 0 16385 10 1 ;(or any valid f-statement) ;(0.5 mark) ; istart idur iamp ifreq iattck idecay i1 1 2.630 452 440 .1812 .7248 ;(1 mark) i1 1 2.630 168 880 .3624 .5436 ;(1 mark) i1 1 2.630 566 1320 .1812 .7248 ;(1 mark) i1 1 2.630 464 1760 .2718 .6342 ;(1 mark) end ;(0.5 mark) ;-------------- -------------------------------------------------------------------------------------------- ; trumpet.orc sr = 22050 ;(0.5 mark) kr = 2205 ksmps = 10 nchnls = 1 instr 1 idur = p3 ;(0.5 mark) iamp = p4 ;(0.5 mark) ifreq = p5 ;(0.5 mark) iattack = p6 ;(0.5 mark) idecay = p7 ;(0.5 mark) kvrate linseg 2, idur, 5 ;(3 marks) kvwidth linseg .03*ifreq, idur, .01*ifreq ;(3 marks) avib oscili kvwidth, kvrate, 1 ;(3 marks) aenv linseg 0, iattack, iamp, (idur - iattack - idecay), iamp, idecay, 0 ;(4 marks) asig oscili aenv,ifreq+avib,1 ;(3 marks) out asig ;(0.5 mark) endin ;(0.5 mark) ;-------------- --------------------------------------------------------------------------------------------     PAGE  PAGE 7 379GIOSTjkl{~l p w { | } ܻѰћћэtcUh%CJPJaJnHtH h#h\L{CJPJaJnHtHh%56CJaJh#hX56CJaJh#hX5CJ\aJ(jh#hXCJUaJmHnHuh#hMCJaJh#h7CJaJh#hd0CJaJh#hXCJaJh#hCJaJh#h5CJaJh#hX5CJaJ/HIUijkl k l q w $$Ifa$ & F & F$a$Y'~''w x z ~ {]$ Z@@#$IfVDWD$^`#a$gdWG| $$Ifa$zkd$$IfTll0n] t04 laT} ~ Ȥ~pbTh#h9l5CJ\aJh#h}5CJ\aJh#h5CJ\aJh#h= g5CJaJh#h5CJaJh#hX5>*CJaJ h#h%CJPJaJnHtHh#h%CJaJh%CJaJh%CJPJaJnHtHhB?CJPJaJnHtHh#hXCJaJ h#hXCJPJaJnHtH~  {]$ Z@@#$IfVDWD$^`#a$gdWG| $$Ifa$zkd$$IfTll0n] t04 laT {]$ Z@@#$IfVDWD$^`#a$gdWG| $$Ifa$zkd@$$IfTll0n] t04 laT {]$ Z@@#$IfVDWD$^`#a$gdWG| $$Ifa$zkd$$IfTll0n] t04 laT xZ$ Z@@#$IfVDWD$^`#a$gd]0 $$Ifa$gd]0zkd$$IfTll0n] t04 laT {]$ Z@@#$IfVDWD$^`#a$gdWG| $$Ifa$zkd $$IfTll0n] t04 laT {]$ Z@@#$IfVDWD$^`#a$gdWG| $$Ifa$zkd$$IfTll0n] t04 laT * + 3 9 : ; < }}}}xxxssgdNvggdgd}zkd`$$IfTll0n] t04 laT * + 3 8 9 : ; < @ H I K   μ٢xm[LmD9h#h%CJaJh\3tCJaJh#hNvgB*CJaJph#h#hNvg5B*CJ\aJphh#hNvgCJaJh#hNvg5CJ\aJh#h\3t5CJ\aJh#h%5CJ\aJh}5CJ\aJh#h}B*CJaJph#h#h}5B*CJ\aJphh#h}CJaJh#h}5CJ\aJh#h9l5CJ\aJh%5CJ\aJ   U V ^ e f g h N z { gdqgdCTomVDnWD^o`mgd# VDn^gdCTgd\3tgd= ggdNvg  ) ; = U V ^ d e f g h i k l t ʸʞ}ooaoUIU@Uh%5CJaJh#h!5CJaJh#hzm5CJaJh#h+5CJ\aJh#hzm5CJ\aJh#h= g5CJ\aJh#h%CJaJhzmCJaJh#h= gCJaJh#h\3tB*CJaJph#h#h\3t5B*CJ\aJphh#h\3tCJaJh#h\3t5CJH*\aJh#hCT5CJ\aJh#h\3t5CJ\aJ  ? C L M N O Q R z { εεwlaSEh#hq5CJ\aJh#h\3t5CJ\aJh#h= gCJaJh#hBCJaJh#h= gB*CJaJphh#hBB*CJaJph#h#h= g5B*CJ\aJphh#hCT5CJ\aJh%5CJ\aJh#hzm5CJ\aJh#hB5CJ\aJh#hzmCJaJh#hzm5CJaJh#h!5CJaJ        3 4 7 @ a c d e f x } Ƚȯȯȯȯ򽡽ujh#h\3tCJaJh#hqCJaJh#hbB*CJaJph#h#hq5B*CJ\aJphh#hb5CJ\aJh#hq5CJ\aJh%5CJ\aJh#hCT5CJ\aJh#hw5CJ\aJh#h!5CJ\aJh#h+5CJ\aJ&  b *+389:gdbgd\3tgdwgdq`gdCT *+379:;=JKM!#$μ΢熔xxfWLAh#h*CJaJh#hqCJaJh#hbB*CJaJph#h#hq5B*CJ\aJphh#hq5CJ\aJh#hegK5CJ\aJh#hb5CJ\aJh#hNvgCJaJh#h\3tB*CJaJph#h#h\3t5B*CJ\aJphh#h\3tCJaJh#hw5CJ\aJh%5CJ\aJh#h\3t5CJ\aJ"#$3st|~+,-rgd\3tgdgd,ygd|gdV~gdq$%'457SXt"#'(/0rst|}~ֽvg\Ph#h5CJaJh#hV~CJaJh#h=JB*CJaJph#h#hq5B*CJ\aJphh#hqCJaJh#h=J5CJ\aJh#h\3t5CJ\aJh#h1Y5CJ\aJh#hV~5CJ\aJh%5CJ\aJh#hegK5CJ\aJh#hq5CJ\aJh#h5CJ\aJ !+,-rsv~se~s~We~W~h#h*5CJ\aJh#h5CJ\aJh%5CJ\aJh#h5CJ\aJh#hCJaJh#h,yCJaJh#hiB*CJaJphh#h,yB*CJaJph#h#h,y5B*CJ\aJphh#h*5CJaJh%5CJaJh#h\3t5CJaJh#h,y5CJaJ     ;]õ~rfZK?6?h%5CJaJh#ho5CJaJh#h#B*CJaJphh%B*CJaJphh#B*CJaJphh\3tB*CJaJphh#h\3tB*CJaJph#h#h\3t5B*CJ\aJphh#h\3tCJaJh%5CJ\aJh#h\3t5CJ\aJh%CJaJ h#h>5B*CJ\aJph h#hB*CJ\aJph#h#h5B*CJ\aJph    s}]^fklgde`gd#gd#gdmgd|gd\3t]mrswzϷϫϠti[M[M[Bh#5CJ\aJh#h1\5CJ\aJh#hh5CJ\aJh#h\3tCJaJh#hoCJaJh#hmB*CJaJph#h#hm5B*CJ\aJphh#hmCJaJh#hm5CJaJh#hs#5CJaJh#hS*5CJaJh#ho5CJaJh#h\3t5CJaJh#hG5CJaJh#h95CJaJ  !"?ABJ[\]^fβΣΘ|q_#h#he5B*CJ\aJphh#hxECJaJh#h+5CJ\aJh#hxE5CJ\aJh%5CJ\aJh#he5CJH*\aJh#h9l5CJ\aJh#h1\5CJ\aJh#he5CJ\aJh#hhCJaJh#5CJ\aJh#hh5CJ\aJ lm>?G Zq`gd> gdSgd|`gd8!gdX DgdefmnoqƸ⪜qfWE6h#h6B*CJaJph#h#hX D5B*CJ\aJphh%5B*CJ\aJphh%5CJ\aJh#hx5CJ\aJh#hDK5CJ\aJh#h65CJH*\aJh#h65CJ\aJh#hX D5CJ\aJh#hh5CJ\aJh#h9l5CJ\aJh#h1\5CJ\aJh#he5CJ\aJh#heB*CJaJph"$')+-0279>?GK˽wllllll]K#h#hX D5B*CJ\aJphh%5B*CJ\aJphh#5CJ\aJh#hX D5CJ\aJh#h8!5CJ\aJh#hS5CJ\aJh#h9l5CJ\aJh#h1\5CJ\aJh#hh5CJ\aJh#hX DCJaJh#heCJaJh#hX DB*CJaJphh#hj:B*CJaJphKV[cuøxj_j_j_j_j_j_j_j_j_jjh#5CJ\aJh#h> 5CJ\aJh#h9l5CJ\aJh#h1\5CJ\aJh#hS5CJ\aJh%5CJ\aJh#hwCJaJh#heCJaJh#heB*CJaJphh#hbfB*CJaJphh#h6B*CJaJphh#h#'B*CJaJph# *.0125IJٽٽ˫vhvZLvh#hb5CJ\aJh#hO235CJ\aJh#h1\5CJ\aJh#h|5CJ\aJh#h|CJaJh#h|CJaJ h#hrB*CJ\aJph#h#hS5B*CJ\aJphh#h05CJ\aJh#hS5CJ\aJh#h> 5CJ\aJh%5CJ\aJh#h|5CJ\aJ]_gklm'>?@Qgdtgd|1EF[\]^_g򽫜ugYggNh#ha CJaJh#ha 5CJ\aJh#h` 5CJ\aJh#h1\5CJ\aJh#h|5CJ\aJh#hM7CJaJh#hbB*CJaJph#h#h|5B*CJ\aJphh#h|CJaJh#h05CJ\aJh#hpf5CJ\aJh#hm)5CJ\aJh#hb5CJ\aJgjlmnoq',̾xixZH9h#hM7B*CJaJph#h#h|5B*CJ\aJphh#hM75CJH*\aJh#h` 5CJH*\aJh#h` 5CJ\aJh#h}^O5CJ\aJh#hM75CJ\aJh#hLcp5CJ\aJh#h|5CJ\aJh#h1\5CJ\aJh#hs95CJ\aJh#h0CJaJh#h|CJaJh#h` B*CJaJph,.9;=?@S`ƻzoaSE7h#h9l5CJ\aJh#h|5CJ\aJh#ht5CJ\aJh#h1\5CJ\aJh%5CJ\aJh#hBvCJaJh#htB*CJaJph#h#ht5B*CJ\aJphh%5CJaJh#ht5CJaJh#htCJaJh#h|CJaJh#hM7B*CJaJphh#hvHB*CJaJph h#hM7B*CJH*aJph37@PQRZ`bcdeȽxj\N\N\C5h#h#5CJ\aJhr5CJ\aJh#hB5CJ\aJh#hr5CJ\aJh#ht5CJ\aJh#h\3t5CJ\aJh#hBvCJaJh#h|CJaJh#h6nB*CJaJph#h#h|5B*CJ\aJphh#hvHCJaJh#h|5CJ\aJh#h6n5CJ\aJh#h05CJ\aJh#hvH5CJ\aJQRZabc    PQYjklgd}Agdrgd|   9OPQYijklmnpŷũziXI>ŷh#h|CJaJh#hR% B*CJaJph h#hBvB*CJ\aJph h#hR% B*CJ\aJph#h#h|5B*CJ\aJphh%5B*CJ\aJphh#hR% 5CJ\aJh#hr5CJ\aJh#ht5CJ\aJh#h|5CJ\aJh#hrCJaJh#hBvB*CJaJph#h#hr5B*CJ\aJphpr~$Ⱥti]Q]E]<]E]h%5CJaJh#hs5CJaJh#ht5CJaJh#h5CJaJh#hCJaJh#h3CJaJh#h|B*CJaJphh#h#B*CJaJph#h#h|5B*CJ\aJphh#h|CJaJh#h|5CJ\aJh#h#5CJ\aJh#h75CJ\aJh#hegK5CJ\aJh#hs5CJ\aJ+EZ[+R+9\gdGfgdpgd}A$*1:DFJYZ[_abkmopw{|÷ßßÓßßvgXMh#hpCJaJh#hpB*CJaJphh#hB*CJaJph#h#hp5B*CJ\aJphh#hCJaJh#hs5CJaJh#hD w5CJaJh#hu15CJaJh#h%"_5CJaJh#hq-5CJaJh#hn55CJaJh#h 5CJaJh#h5CJaJh#h &n5CJaJ<=WX.0 % & @ A ^ ѷѷѷѷѭhGf h#hGfh#hGf5\h#hGf5CJH*\aJhGf5CJ\aJh#hGf5CJ\aJh#hZ@CJaJh#hCJaJh#hu1CJaJ@#45 * F d 8!9!u!!!!K"M"gdGf^ _ { | !!2!3!o!p!!!!!!!!!!!M"N"W"""""""##J#K#P#U#V#\#k#l#z#{#######################$ $$$$$$$$h#hGf>*B*phhGfB*phh#hGf5B*phh#hGfB*ph h#hGfhGfOM"N"W"""#E#u###$!$$$$$$$$$%%%C%c%%%%%/&0&gdGf$$$$%%%%.%1%7%8%N%Q%W%X%m%p%v%w%%%%%%%%%%%& &$&%&<&x&y&z&&&&&&&&&&&&&&&&&X'Y'Z'\']'_'`'b'c'e'f'l'm'n'p'q'ùhCT hCT0JjhCT0JUh/Fjh/FU h#hPhGf>*B*phhGfB*phh#hGfB*phh#hGf>*B*phE0&&&&&X'Y'['\'^'_'a'b'd'e'n'o'p'{'|'}'~''''h]h &`#$gdgdGfq'w'x'y'z'{'}'~'''' h#hPhXh/FhCThGf0JmHnHujhCT0JU hCT0J ,1h/ =!"#$% $$If!vh55]#v#v]:V ll t055]4T$$If!vh55]#v#v]:V ll t055]4T$$If!vh55]#v#v]:V ll t055]4T$$If!vh55]#v#v]:V ll t055]4T$$If!vh55]#v#v]:V ll t055]4T$$If!vh55]#v#v]:V ll t055]4T$$If!vh55]#v#v]:V ll t055]4T$$If!vh55]#v#v]:V ll t055]4T<@< NormalPJ_HmH sH tH DA@D Default Paragraph FontVi@V  Table Normal :V 44 la (k(No List e@ HTML Preformatted7 2( Px 4 #\'*.25@9OJPJQJ^JnHtH4@4 Header  !@O@ Code ^CJOJQJ^JaJVO"V question_part ^5CJOJQJ^JaJLO2L question ^5CJOJQJ^JaJ4 @B4 Footer  !.)@Q. Page Number /HIUijklklqwxz~*+39:;<UV^efghNz{b*+389:"#$3st|~+ , - r  s }   ] ^ f k l m  > ? G Z q ]_gklm'>?@QRZabc    PQYjkl+EZ[+R+9\#45*Fd89uKMNWEu!%Cc/0XY[\^_abdenop{|}~00000000000000 0 0 000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @0 @0 @0 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@00h00h00h00h00h00h00h00h00h00h00h00@0@0h00Th00(h00h00 Xj00L9 0j00 j00 0 j0h0h0000 $$$'}  $]fKg,p$^ $q'' "#$&()*,-/01245679:<=?ACw ~ lQM"0&'!%'+.38;>@B'  '!!8@f(  bB  c $g ?"bB  c $g ?"B S  ?' (t5 6t RLRHR,YRRT3_R&RnHR3_R&R(NR\ RX       = *urn:schemas-microsoft-com:office:smarttags PlaceName= *urn:schemas-microsoft-com:office:smarttags PlaceType9 *urn:schemas-microsoft-com:office:smarttagsplace lz %x~7=>DIPRVX`bfhn XYY[[\\^_abdempz}~KM%MQ7<uv45|}9 ; r v   t u ~  ! % ! " [ \ r s 6Pgj'<SVpu  ~1:j~XYY[[\\^_abdempz}~3333333333333333333333333333333333333333333333333333333333333IUllqx{+3t  > ? G  Ql FXYY[[\\^_abde}~YY[[\\^_abde}~| Djw u5! Z,U )ЦAv)9 ,:_!v~!y0$h4@)r}z3aAO4޹ag5GFra޲H$Q<h.\ah_VcŒl.y0Th^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hH ^` OJQJo(hHl ^` OJQJo(hHn ^` OJQJo(hHu`  ` ^` ` OJQJo(hHl@  @ ^@ ` OJQJo(hHn   ^ ` OJQJo(hHu ^` OJQJo(hHl ^` OJQJo(hHn ^` OJQJo(hHuh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh ^`o(hH)h^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hH@h1h^h`.0^`0OJPJQJ^J) ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.0^`0o() ^` OJQJo(hHl  ^` hH.  ^` hH. `  ` ^` ` hH0 @  @ ^@ ` hH.    ^ ` hH.  ^` hH0  ^` hH.^`o(. ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.^`o() ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.^`o(. ( (^(` hH0  ^` hH.  ^` hH.    ^ ` hH0    ^ ` hH.  ^` hH. h h^h` hH0 H H^H` hH.hh^h`OJPJQJ^Jo(- ^` OJQJo(hHn ^` OJQJo(hHu ^` OJQJo(hHl`  ` ^` ` OJQJo(hHn@  @ ^@ ` OJQJo(hHu   ^ ` OJQJo(hHl ^` OJQJo(hHn ^` OJQJo(hHu\^`\B*OJQJo(phhHH\H^H`\B*OJQJo(phhH\^`\OJQJo(hHu\^`\OJQJo(hHl4\4^4`\OJQJo(hHn \ ^ `\OJQJo(hHu| \| ^| `\OJQJo(hHl \ ^ `\OJQJo(hHn\^`\OJQJo(hHu0^`0o()  ^` hH0  ^` hH.  ^` hH. `  ` ^` ` hH0 @  @ ^@ ` hH.    ^ ` hH.  ^` hH0  ^` hH.h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh0^`0OJPJQJ^J)h 88^8`hH.h L^`LhH.h   ^ `hH.h   ^ `hH.h xLx^x`LhH.h HH^H`hH.h ^`hH.h L^`LhH.808^8`0o() ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.hh^h`o()  ^` hH0  ^` hH.  ^` hH. `  ` ^` ` hH0 @  @ ^@ ` hH.    ^ ` hH.  ^` hH0  ^` hH.h808^8`0o() ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.hh^h`OJPJQJ^Jo(- ^` OJQJo(hHn ^` OJQJo(hHu ^` OJQJo(hHl`  ` ^` ` OJQJo(hHn@  @ ^@ ` OJQJo(hHu   ^ ` OJQJo(hHl ^` OJQJo(hHn ^` OJQJo(hHu^`o() ^`hH. pLp^p`LhH. @ @ ^@ `hH. ^`hH. L^`LhH. ^`hH. ^`hH. PLP^P`LhH.h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHAA&z4@) O4!$Q:_!l9z3wag5yu5! ,U 0.\GFH_Vcy0$&z b@h1h^h`.                                    8                                   J&         u        ZIk                                 8                         &/        ڤO                           C MM,+c%0Sc%0q[PVfPVf _qM+u,+i~ _qqs B?27#xds > w CT^a bfw(*sV~n vH~x8!9wSR% ) .!0J#,$6$E>%}%(#*S*=+Gd,-q-(.u1v2O23>5n5+6]8o@9s9j: <2>O?Z@[@QA}AX DvDxE/FGrHJ=JegK2N}^OQeXBXSX1Y'eg|i0Ks#b]0QX/m%* =eHM1 M7k#a+pls)m#r9! 2]<Jn5#'>ho!kf+;Bvd0V~Bh~ $)-"3i.q$9hm)r+2Le/e`-rr\5x?DKB+Gx,P-r8B|zm@6Mpf,yBb9l|'EeHilqwxz~@XXvXX@UnknownGz Times New Roman5Symbol3& z ArialC .PMingLiUe0}fԚUSimSun??????????????5 z Courier New71 Courier;Wingdings"1hڣ&bfcz 88!4dII 2QHX?0J#2.Hong Kong University of Science and TechnologycslcwCSDd                 Oh+'0   ,8 X d p |0Hong Kong University of Science and Technologycslcw Normal.dotCSD5Microsoft Office Word@vA@m @PQ@]՜.+,0 hp  HKUST8I /Hong Kong University of Science and Technology Title  !"#$%&'()*+,-./0123456789:;<=>?@ABCDFGHIJKLNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Root Entry FEL]Data E1TableM݈WordDocument.SummaryInformation(DocumentSummaryInformation8CompObjq  FMicrosoft Office Word Document MSWordDocWord.Document.89q