sheet002.htm 183 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505
  1. <html xmlns:v="urn:schemas-microsoft-com:vml"
  2. xmlns:o="urn:schemas-microsoft-com:office:office"
  3. xmlns:x="urn:schemas-microsoft-com:office:excel"
  4. xmlns="http://www.w3.org/TR/REC-html40">
  5. <head>
  6. <meta http-equiv=Content-Type content="text/html; charset=x-mac-chinesesimp">
  7. <meta name=ProgId content=Excel.Sheet>
  8. <meta name=Generator content="Microsoft Excel 15">
  9. <link id=Main-File rel=Main-File href="../tdetail.htm">
  10. <link rel=File-List href=filelist.xml>
  11. <link rel=Stylesheet href=stylesheet.css>
  12. <style>
  13. <!--table
  14. {mso-displayed-decimal-separator:"\.";
  15. mso-displayed-thousand-separator:"\,";}
  16. @page
  17. {margin:.75in .7in .75in .7in;
  18. mso-header-margin:.3in;
  19. mso-footer-margin:.3in;}
  20. ruby
  21. {ruby-align:left;}
  22. rt
  23. {color:windowtext;
  24. font-size:9.0pt;
  25. font-weight:400;
  26. font-style:normal;
  27. text-decoration:none;
  28. font-family:宋体;
  29. mso-generic-font-family:auto;
  30. mso-font-charset:134;
  31. mso-char-type:none;
  32. display:none;}
  33. -->
  34. </style>
  35. <![if !supportTabStrip]><script language="JavaScript">
  36. <!--
  37. function fnUpdateTabs()
  38. {
  39. if (parent.window.g_iIEVer>=4) {
  40. if (parent.document.readyState=="complete"
  41. && parent.frames['frTabs'].document.readyState=="complete")
  42. parent.fnSetActiveSheet(1);
  43. else
  44. window.setTimeout("fnUpdateTabs();",150);
  45. }
  46. }
  47. if (window.name!="frSheet")
  48. window.location.replace("../tdetail.htm");
  49. else
  50. fnUpdateTabs();
  51. //-->
  52. </script>
  53. <![endif]>
  54. </head>
  55. <body link=blue vlink=purple>
  56. <table border=0 cellpadding=0 cellspacing=0 width=1371 style='border-collapse:
  57. collapse;table-layout:fixed;width:1028pt'>
  58. <col class=xl74 width=48 style='mso-width-source:userset;mso-width-alt:1536;
  59. width:36pt'>
  60. <col class=xl75 width=251 style='mso-width-source:userset;mso-width-alt:8021;
  61. width:188pt'>
  62. <col class=xl75 width=265 style='mso-width-source:userset;mso-width-alt:8490;
  63. width:199pt'>
  64. <col class=xl75 width=76 style='mso-width-source:userset;mso-width-alt:2432;
  65. width:57pt'>
  66. <col class=xl75 width=108 style='mso-width-source:userset;mso-width-alt:3456;
  67. width:81pt'>
  68. <col width=64 style='mso-width-source:userset;mso-width-alt:2048;width:48pt'>
  69. <col width=87 span=2 style='mso-width-source:userset;mso-width-alt:2773;
  70. width:65pt'>
  71. <col class=xl76 width=97 style='mso-width-source:userset;mso-width-alt:3114;
  72. width:73pt'>
  73. <col class=xl76 width=72 style='mso-width-source:userset;mso-width-alt:2304;
  74. width:54pt'>
  75. <col class=xl76 width=69 style='mso-width-source:userset;mso-width-alt:2218;
  76. width:52pt'>
  77. <col width=147 style='mso-width-source:userset;mso-width-alt:4693;width:110pt'>
  78. <col width=72 style='width:54pt'>
  79. <col width=93 style='mso-width-source:userset;mso-width-alt:2986;width:70pt'>
  80. <tr height=28 style='mso-height-source:userset;height:21.75pt'>
  81. <td height=28 class=xl77 colspan=2 width=299 style='height:21.75pt;
  82. mso-ignore:colspan;width:224pt'>备料计划控制表</td>
  83. <td class=xl78 colspan=6 width=687 style='mso-ignore:colspan;width:515pt'>注:物资明细由备料计划录入信息表合并同类项得来,此表查询备料计划<span
  84. style='display:none'>执行情况。可查看备料是否有合同,是否下供货通知,是否到货,是否发货</span></td>
  85. <td class=xl87 width=97 style='width:73pt'> </td>
  86. <td class=xl87 width=72 style='width:54pt'> </td>
  87. <td class=xl87 width=69 style='width:52pt'> </td>
  88. <td class=xl77 width=147 style='width:110pt'></td>
  89. </tr>
  90. <tr class=xl72 height=16 style='mso-height-source:userset;height:12.0pt'>
  91. <td height=16 class=xl79 width=48 style='height:12.0pt;width:36pt'>序号</td>
  92. <td class=xl79 width=251 style='border-left:none;width:188pt'>物资名称</td>
  93. <td class=xl79 width=265 style='border-left:none;width:199pt'>型号规格</td>
  94. <td class=xl79 width=76 style='border-left:none;width:57pt'>物资标识</td>
  95. <td class=xl79 width=108 style='border-left:none;width:81pt'>质量标准技术要求</td>
  96. <td class=xl79 width=64 style='border-left:none;width:48pt'>计量单位</td>
  97. <td class=xl80 width=87 style='border-left:none;width:65pt'>备料计划数量</td>
  98. <td class=xl80 width=87 style='width:65pt'>合同数量</td>
  99. <td class=xl88 width=97 style='width:73pt'>供货通知单数量</td>
  100. <td class=xl88 width=72 style='border-left:none;width:54pt'>到货数量</td>
  101. <td class=xl88 width=69 style='border-left:none;width:52pt'>发出数量</td>
  102. <td class=xl79 width=147 style='border-left:none;width:110pt'>备注</td>
  103. </tr>
  104. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  105. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  106. width:36pt'>1</td>
  107. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>并联硬锚底座</td>
  108. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0124(300)</td>
  109. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000001</td>
  110. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-8</td>
  111. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  112. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>600</td>
  113. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  114. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  115. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  116. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  117. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  118. </tr>
  119. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  120. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  121. width:36pt'>2</td>
  122. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>250型馈线固定底座</td>
  123. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0906(H250)</td>
  124. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000002</td>
  125. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-9</td>
  126. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  127. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>400</td>
  128. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  129. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  130. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  131. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  132. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  133. </tr>
  134. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  135. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  136. width:36pt'>3</td>
  137. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>300型馈线固定底座</td>
  138. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0906(H300)</td>
  139. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000003</td>
  140. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-9</td>
  141. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  142. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>600</td>
  143. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  144. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  145. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  146. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  147. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  148. </tr>
  149. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  150. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  151. width:36pt'>4</td>
  152. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>300*660型馈线固定底座</td>
  153. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0906(H300*660)</td>
  154. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000004</td>
  155. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-9</td>
  156. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  157. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  158. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  159. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  160. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  161. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  162. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  163. </tr>
  164. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  165. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  166. width:36pt'>5</td>
  167. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>Z-7挂板</td>
  168. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB2327-85</td>
  169. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000005</td>
  170. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  171. style='display:none'>-3</span></td>
  172. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  173. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  174. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  175. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  176. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  177. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  178. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  179. </tr>
  180. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  181. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  182. width:36pt'>6</td>
  183. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>P-7挂板</td>
  184. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB2327-85</td>
  185. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000006</td>
  186. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  187. style='display:none'>-3</span></td>
  188. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  189. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  190. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  191. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  192. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  193. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  194. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  195. </tr>
  196. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  197. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  198. width:36pt'>7</td>
  199. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'><span
  200. style='mso-spacerun:yes'>&nbsp;</span>P-16挂板</td>
  201. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB2327-85</td>
  202. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000007</td>
  203. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  204. style='display:none'>-3</span></td>
  205. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  206. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  207. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  208. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  209. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  210. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  211. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  212. </tr>
  213. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  214. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  215. width:36pt'>8</td>
  216. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>D1型双联板</td>
  217. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL42(D1)-98</td>
  218. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000008</td>
  219. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-6</td>
  220. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  221. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  222. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  223. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  224. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  225. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  226. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  227. </tr>
  228. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  229. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  230. width:36pt'>9</td>
  231. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>卡绝缘联板</td>
  232. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0121</td>
  233. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000009</td>
  234. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-7</td>
  235. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  236. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  237. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  238. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  239. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  240. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  241. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  242. </tr>
  243. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  244. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  245. width:36pt'>10</td>
  246. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>下锚绝缘子</td>
  247. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>XJ-1.5A</td>
  248. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000010</td>
  249. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-1</td>
  250. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  251. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  252. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  253. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  254. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  255. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  256. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  257. </tr>
  258. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  259. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  260. width:36pt'>11</td>
  261. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>D3型电连接线夹</td>
  262. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL05(D3)-98</td>
  263. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000011</td>
  264. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-4</td>
  265. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  266. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  267. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  268. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  269. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  270. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  271. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  272. </tr>
  273. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  274. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  275. width:36pt'>12</td>
  276. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>D4型电连接线夹</td>
  277. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL05(D4)-98</td>
  278. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000012</td>
  279. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-4</td>
  280. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  281. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  282. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  283. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  284. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  285. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  286. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  287. </tr>
  288. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  289. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  290. width:36pt'>13</td>
  291. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>直式接触线电连接线夹</td>
  292. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL04(Z)-98</td>
  293. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000013</td>
  294. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-3</td>
  295. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  296. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  297. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  298. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  299. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  300. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  301. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  302. </tr>
  303. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  304. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  305. width:36pt'>14</td>
  306. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>三线馈线线夹</td>
  307. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GDC19-98(改)</td>
  308. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000014</td>
  309. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-12</td>
  310. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  311. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  312. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  313. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  314. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  315. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  316. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  317. </tr>
  318. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  319. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  320. width:36pt'>15</td>
  321. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>双线等距线夹</td>
  322. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GDC18-98</td>
  323. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000015</td>
  324. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  325. style='display:none'>-10</span></td>
  326. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  327. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  328. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  329. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  330. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  331. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  332. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  333. </tr>
  334. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  335. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  336. width:36pt'>16</td>
  337. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>承力索终锚线夹</td>
  338. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL27(T150)-98</td>
  339. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000016</td>
  340. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-5</td>
  341. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  342. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  343. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  344. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  345. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  346. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  347. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  348. </tr>
  349. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  350. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  351. width:36pt'>17</td>
  352. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>Z-10型挂板</td>
  353. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB2327-85</td>
  354. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000017</td>
  355. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  356. style='display:none'>-3</span></td>
  357. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  358. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  359. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  360. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  361. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  362. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  363. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  364. </tr>
  365. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  366. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  367. width:36pt'>18</td>
  368. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>调整螺栓</td>
  369. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>CJL89AA</td>
  370. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000018</td>
  371. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-13</td>
  372. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  373. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  374. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  375. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  376. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  377. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  378. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  379. </tr>
  380. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  381. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  382. width:36pt'>19</td>
  383. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>合成绝缘棒</td>
  384. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>HJ-1.5M(红色)</td>
  385. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000019</td>
  386. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-2</td>
  387. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  388. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  389. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  390. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  391. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  392. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  393. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  394. </tr>
  395. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  396. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  397. width:36pt'>20</td>
  398. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>馈线支持座</td>
  399. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0141</td>
  400. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000020</td>
  401. <td class=xl81 width=108 style='border-top:none;border-left:none;width:81pt'>安装图册-10</td>
  402. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  403. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  404. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  405. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  406. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  407. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  408. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  409. </tr>
  410. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  411. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  412. width:36pt'>21</td>
  413. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>150mm2铜接线端子</td>
  414. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTG-185型/GB14315</td>
  415. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000021</td>
  416. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  417. style='display:none'>-3</span></td>
  418. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  419. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  420. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  421. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  422. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  423. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  424. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  425. </tr>
  426. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  427. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  428. width:36pt'>22</td>
  429. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>400mm2铜接线端子</td>
  430. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTG-400型/GB14315</td>
  431. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000022</td>
  432. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  433. style='display:none'>-3</span></td>
  434. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  435. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  436. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  437. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  438. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  439. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  440. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  441. </tr>
  442. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  443. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  444. width:36pt'>23</td>
  445. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>电缆抱箍</td>
  446. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DTL0140</td>
  447. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000023</td>
  448. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  449. style='display:none'>-3</span></td>
  450. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  451. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  452. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  453. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  454. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  455. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  456. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  457. </tr>
  458. <tr class=xl73 height=35 style='height:26.0pt'>
  459. <td height=35 class=xl79 width=48 style='height:26.0pt;border-top:none;
  460. width:36pt'>24</td>
  461. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>电缆固定架</td>
  462. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GXJL25-99(该电缆固定架固定5根400mm2电缆,图纸中将33mm改为100mm,L=350mm)</td>
  463. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000024</td>
  464. <td class=xl82 style='border-top:none;border-left:none'>安装图册-1<span
  465. style='display:none'>1</span></td>
  466. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  467. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  468. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  469. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  470. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  471. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  472. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  473. </tr>
  474. <tr class=xl73 height=35 style='height:26.0pt'>
  475. <td height=35 class=xl79 width=48 style='height:26.0pt;border-top:none;
  476. width:36pt'>25</td>
  477. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>电缆固定架</td>
  478. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GXJL25-99(该电缆固定架固定5根150mm2电缆,图纸中将33mm改为50mm,L=230mm)</td>
  479. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000025</td>
  480. <td class=xl82 style='border-top:none;border-left:none'>安装图册-1<span
  481. style='display:none'>1</span></td>
  482. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  483. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  484. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  485. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  486. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  487. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  488. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  489. </tr>
  490. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  491. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  492. width:36pt'>26</td>
  493. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>螺栓M16x60</td>
  494. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB5781-86</td>
  495. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000026</td>
  496. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  497. style='display:none'>-4</span></td>
  498. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  499. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  500. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  501. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  502. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  503. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  504. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  505. </tr>
  506. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  507. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  508. width:36pt'>27</td>
  509. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>螺母
  510. M16</td>
  511. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB6170-86</td>
  512. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000027</td>
  513. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  514. style='display:none'>-4</span></td>
  515. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  516. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  517. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  518. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  519. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  520. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  521. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  522. </tr>
  523. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  524. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  525. width:36pt'>28</td>
  526. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>垫圈
  527. 16</td>
  528. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB95-85</td>
  529. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000028</td>
  530. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  531. style='display:none'>-4</span></td>
  532. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  533. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  534. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  535. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  536. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  537. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  538. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  539. </tr>
  540. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  541. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  542. width:36pt'>29</td>
  543. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>垫圈
  544. 16</td>
  545. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>GB93-87</td>
  546. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000029</td>
  547. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  548. style='display:none'>-4</span></td>
  549. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  550. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  551. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  552. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  553. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  554. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  555. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  556. </tr>
  557. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  558. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  559. width:36pt'>30</td>
  560. <td class=xl83 width=251 style='border-top:none;border-left:none;width:188pt'>电缆固定卡</td>
  561. <td class=xl83 width=265 style='border-top:none;border-left:none;width:199pt'>GXJL24-99</td>
  562. <td class=xl83 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000030</td>
  563. <td class=xl84 style='border-top:none;border-left:none'>技术规格书<span
  564. style='display:none'>-3</span></td>
  565. <td class=xl85 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  566. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  567. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  568. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  569. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  570. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  571. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  572. </tr>
  573. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  574. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  575. width:36pt'>31</td>
  576. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>后扩底螺栓(含2个螺母、1个平垫圈、1个弹性垫圈)</td>
  577. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>M10</td>
  578. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000031</td>
  579. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  580. style='display:none'>-8</span></td>
  581. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  582. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  583. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  584. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  585. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  586. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  587. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  588. </tr>
  589. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  590. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  591. width:36pt'>32</td>
  592. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>腕臂电缆扎带(刚扎带)</td>
  593. <td class=xl86 width=265 style='border-top:none;border-left:none;width:199pt'>5*500</td>
  594. <td class=xl86 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000032</td>
  595. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  596. style='display:none'>-5</span></td>
  597. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  598. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  599. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  600. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  601. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  602. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  603. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  604. </tr>
  605. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  606. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  607. width:36pt'>33</td>
  608. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>热缩管</td>
  609. <td class=xl86 width=265 style='border-top:none;border-left:none;width:199pt'>Ф50</td>
  610. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000033</td>
  611. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  612. style='display:none'>-6</span></td>
  613. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  614. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  615. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  616. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  617. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  618. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  619. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  620. </tr>
  621. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  622. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  623. width:36pt'>34</td>
  624. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>热缩管</td>
  625. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>Ф25</td>
  626. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000034</td>
  627. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  628. style='display:none'>-6</span></td>
  629. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  630. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  631. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  632. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  633. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  634. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  635. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  636. </tr>
  637. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  638. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  639. width:36pt'>35</td>
  640. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>工作服(冬季)</td>
  641. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>XL</td>
  642. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000035</td>
  643. <td class=xl82 style='border-top:none;border-left:none'> </td>
  644. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  645. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  646. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  647. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  648. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  649. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  650. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  651. </tr>
  652. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  653. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  654. width:36pt'>36</td>
  655. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>工作服(冬季)</td>
  656. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>XXL</td>
  657. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000036</td>
  658. <td class=xl82 style='border-top:none;border-left:none'> </td>
  659. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  660. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  661. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  662. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  663. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  664. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  665. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  666. </tr>
  667. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  668. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  669. width:36pt'>37</td>
  670. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>工作服(冬季)</td>
  671. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>XXXL</td>
  672. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000037</td>
  673. <td class=xl82 style='border-top:none;border-left:none'> </td>
  674. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  675. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  676. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  677. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  678. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  679. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  680. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  681. </tr>
  682. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  683. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  684. width:36pt'>38</td>
  685. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>安全帽</td>
  686. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>黄色</td>
  687. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000038</td>
  688. <td class=xl82 style='border-top:none;border-left:none'> </td>
  689. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>顶</td>
  690. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  691. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  692. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  693. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  694. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  695. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  696. </tr>
  697. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  698. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  699. width:36pt'>39</td>
  700. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>急救药箱</td>
  701. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>含常用药品</td>
  702. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000039</td>
  703. <td class=xl82 style='border-top:none;border-left:none'> </td>
  704. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  705. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  706. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  707. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  708. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  709. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  710. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  711. </tr>
  712. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  713. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  714. width:36pt'>40</td>
  715. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>雨衣</td>
  716. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  717. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000040</td>
  718. <td class=xl82 style='border-top:none;border-left:none'> </td>
  719. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  720. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  721. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  722. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  723. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  724. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  725. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  726. </tr>
  727. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  728. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  729. width:36pt'>41</td>
  730. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>雨靴</td>
  731. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  732. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000041</td>
  733. <td class=xl82 style='border-top:none;border-left:none'> </td>
  734. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>双</td>
  735. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  736. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  737. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  738. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  739. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  740. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  741. </tr>
  742. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  743. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  744. width:36pt'>42</td>
  745. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>强光手电</td>
  746. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  747. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000042</td>
  748. <td class=xl82 style='border-top:none;border-left:none'> </td>
  749. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  750. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  751. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  752. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  753. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  754. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  755. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  756. </tr>
  757. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  758. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  759. width:36pt'>43</td>
  760. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>安全帽</td>
  761. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>黄色</td>
  762. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000038</td>
  763. <td class=xl82 style='border-top:none;border-left:none'> </td>
  764. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>顶</td>
  765. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  766. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  767. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  768. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  769. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  770. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  771. </tr>
  772. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  773. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  774. width:36pt'>44</td>
  775. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>急救药箱</td>
  776. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>含常用药品</td>
  777. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000039</td>
  778. <td class=xl82 style='border-top:none;border-left:none'> </td>
  779. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  780. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  781. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  782. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  783. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  784. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  785. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  786. </tr>
  787. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  788. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  789. width:36pt'>45</td>
  790. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>雨衣</td>
  791. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  792. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000040</td>
  793. <td class=xl82 style='border-top:none;border-left:none'> </td>
  794. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  795. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  796. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  797. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  798. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  799. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  800. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  801. </tr>
  802. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  803. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  804. width:36pt'>46</td>
  805. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>雨靴</td>
  806. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  807. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000041</td>
  808. <td class=xl82 style='border-top:none;border-left:none'> </td>
  809. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>双</td>
  810. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  811. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  812. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  813. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  814. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  815. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  816. </tr>
  817. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  818. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  819. width:36pt'>47</td>
  820. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>安全带</td>
  821. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>全身型</td>
  822. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000043</td>
  823. <td class=xl82 style='border-top:none;border-left:none'> </td>
  824. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  825. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  826. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  827. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  828. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  829. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  830. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  831. </tr>
  832. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  833. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  834. width:36pt'>48</td>
  835. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>安全警示带</td>
  836. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>红白色</td>
  837. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000044</td>
  838. <td class=xl82 style='border-top:none;border-left:none'> </td>
  839. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>卷</td>
  840. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  841. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  842. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  843. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  844. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  845. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  846. </tr>
  847. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  848. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  849. width:36pt'>49</td>
  850. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
  851. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150*4.5mm</td>
  852. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000045</td>
  853. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  854. style='display:none'>-1</span></td>
  855. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  856. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  857. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  858. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  859. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  860. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  861. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  862. </tr>
  863. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  864. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  865. width:36pt'>50</td>
  866. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
  867. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN100*4mm</td>
  868. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000046</td>
  869. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  870. style='display:none'>-1</span></td>
  871. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  872. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  873. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  874. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  875. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  876. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  877. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  878. </tr>
  879. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  880. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  881. width:36pt'>51</td>
  882. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
  883. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN80*4mm</td>
  884. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000047</td>
  885. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  886. style='display:none'>-1</span></td>
  887. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  888. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  889. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  890. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  891. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  892. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  893. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  894. </tr>
  895. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  896. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  897. width:36pt'>52</td>
  898. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
  899. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN65*4mm</td>
  900. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000048</td>
  901. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  902. style='display:none'>-1</span></td>
  903. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  904. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  905. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  906. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  907. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  908. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  909. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  910. </tr>
  911. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  912. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  913. width:36pt'>53</td>
  914. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
  915. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN50*3.8mm</td>
  916. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000049</td>
  917. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  918. style='display:none'>-1</span></td>
  919. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  920. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  921. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  922. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  923. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  924. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  925. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  926. </tr>
  927. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  928. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  929. width:36pt'>54</td>
  930. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
  931. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN40*3.5mm</td>
  932. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000050</td>
  933. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  934. style='display:none'>-1</span></td>
  935. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  936. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  937. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  938. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  939. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  940. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  941. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  942. </tr>
  943. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  944. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  945. width:36pt'>55</td>
  946. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
  947. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN32*3.5mm</td>
  948. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000051</td>
  949. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  950. style='display:none'>-1</span></td>
  951. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  952. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  953. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  954. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  955. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  956. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  957. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  958. </tr>
  959. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  960. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  961. width:36pt'>56</td>
  962. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>内外壁热镀锌钢管</td>
  963. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN25*3.2mm</td>
  964. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000052</td>
  965. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  966. style='display:none'>-1</span></td>
  967. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>米</td>
  968. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  969. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  970. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  971. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  972. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  973. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  974. </tr>
  975. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  976. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  977. width:36pt'>57</td>
  978. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌90°弯头</td>
  979. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN25</td>
  980. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000053</td>
  981. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  982. style='display:none'>之前标准</span></td>
  983. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  984. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  985. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  986. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  987. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  988. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  989. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  990. </tr>
  991. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  992. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  993. width:36pt'>58</td>
  994. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌90°弯头</td>
  995. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN32</td>
  996. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000054</td>
  997. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  998. style='display:none'>之前标准</span></td>
  999. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1000. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1001. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1002. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1003. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1004. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1005. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1006. </tr>
  1007. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1008. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1009. width:36pt'>59</td>
  1010. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌90°弯头</td>
  1011. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN32*25</td>
  1012. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000055</td>
  1013. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1014. style='display:none'>之前标准</span></td>
  1015. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1016. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1017. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1018. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1019. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1020. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1021. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1022. </tr>
  1023. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1024. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1025. width:36pt'>60</td>
  1026. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌90°弯头</td>
  1027. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN40</td>
  1028. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000056</td>
  1029. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1030. style='display:none'>之前标准</span></td>
  1031. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1032. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1033. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1034. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1035. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1036. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1037. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1038. </tr>
  1039. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1040. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1041. width:36pt'>61</td>
  1042. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>外丝直接</td>
  1043. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1044. class="font10">D</font><font class="font11">N15</font></td>
  1045. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000057</td>
  1046. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1047. style='display:none'>之前标准</span></td>
  1048. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1049. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1050. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1051. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1052. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1053. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1054. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1055. </tr>
  1056. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1057. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1058. width:36pt'>62</td>
  1059. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>外丝直接</td>
  1060. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1061. class="font10">D</font><font class="font11">N25</font></td>
  1062. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000058</td>
  1063. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1064. style='display:none'>之前标准</span></td>
  1065. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1066. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1067. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1068. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1069. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1070. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1071. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1072. </tr>
  1073. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1074. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1075. width:36pt'>63</td>
  1076. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
  1077. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1078. class="font10">D</font><font class="font11">N25*15</font></td>
  1079. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000059</td>
  1080. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1081. style='display:none'>之前标准</span></td>
  1082. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1083. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1084. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1085. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1086. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1087. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1088. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1089. </tr>
  1090. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1091. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1092. width:36pt'>64</td>
  1093. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
  1094. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1095. class="font10">D</font><font class="font11">N25*20</font></td>
  1096. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000060</td>
  1097. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1098. style='display:none'>之前标准</span></td>
  1099. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1100. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1101. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1102. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1103. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1104. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1105. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1106. </tr>
  1107. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1108. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1109. width:36pt'>65</td>
  1110. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
  1111. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1112. class="font10">D</font><font class="font11">N32*15</font></td>
  1113. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000061</td>
  1114. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1115. style='display:none'>之前标准</span></td>
  1116. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1117. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1118. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1119. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1120. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1121. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1122. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1123. </tr>
  1124. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1125. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1126. width:36pt'>66</td>
  1127. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
  1128. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1129. class="font10">D</font><font class="font11">N32*20</font></td>
  1130. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000062</td>
  1131. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1132. style='display:none'>之前标准</span></td>
  1133. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1134. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1135. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1136. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1137. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1138. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1139. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1140. </tr>
  1141. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1142. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1143. width:36pt'>67</td>
  1144. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌大小头</td>
  1145. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1146. class="font10">D</font><font class="font11">N65*40</font></td>
  1147. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000063</td>
  1148. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1149. style='display:none'>之前标准</span></td>
  1150. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1151. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1152. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1153. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1154. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1155. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1156. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1157. </tr>
  1158. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1159. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1160. width:36pt'>68</td>
  1161. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1162. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1163. class="font10">D</font><font class="font11">N25*25*25</font></td>
  1164. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000064</td>
  1165. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1166. style='display:none'>之前标准</span></td>
  1167. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1168. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1169. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1170. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1171. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1172. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1173. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1174. </tr>
  1175. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1176. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1177. width:36pt'>69</td>
  1178. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1179. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1180. class="font10">D</font><font class="font11">N32*32*32</font></td>
  1181. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000065</td>
  1182. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1183. style='display:none'>之前标准</span></td>
  1184. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1185. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1186. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1187. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1188. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1189. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1190. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1191. </tr>
  1192. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1193. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1194. width:36pt'>70</td>
  1195. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1196. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1197. class="font10">D</font><font class="font11">N32*40*32</font></td>
  1198. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000066</td>
  1199. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1200. style='display:none'>之前标准</span></td>
  1201. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1202. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1203. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1204. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1205. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1206. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1207. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1208. </tr>
  1209. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1210. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1211. width:36pt'>71</td>
  1212. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1213. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1214. class="font10">D</font><font class="font11">N40*32*32</font></td>
  1215. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000067</td>
  1216. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1217. style='display:none'>之前标准</span></td>
  1218. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1219. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1220. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1221. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1222. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1223. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1224. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1225. </tr>
  1226. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1227. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1228. width:36pt'>72</td>
  1229. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1230. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN40*32*40</td>
  1231. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000068</td>
  1232. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1233. style='display:none'>之前标准</span></td>
  1234. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1235. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1236. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1237. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1238. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1239. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1240. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1241. </tr>
  1242. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1243. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1244. width:36pt'>73</td>
  1245. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1246. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1247. class="font10">DN40*</font><font class="font11">40*32</font></td>
  1248. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000069</td>
  1249. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1250. style='display:none'>之前标准</span></td>
  1251. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1252. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1253. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1254. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1255. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1256. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1257. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1258. </tr>
  1259. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1260. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1261. width:36pt'>74</td>
  1262. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1263. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1264. class="font10">D</font><font class="font11">N40*65*40</font></td>
  1265. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000070</td>
  1266. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1267. style='display:none'>之前标准</span></td>
  1268. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1269. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1270. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1271. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1272. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1273. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1274. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1275. </tr>
  1276. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1277. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1278. width:36pt'>75</td>
  1279. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1280. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN50*32*40</td>
  1281. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000071</td>
  1282. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1283. style='display:none'>之前标准</span></td>
  1284. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1285. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1286. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1287. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1288. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1289. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1290. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1291. </tr>
  1292. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1293. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1294. width:36pt'>76</td>
  1295. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1296. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1297. class="font10">DN65*</font><font class="font11">32*50</font></td>
  1298. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000072</td>
  1299. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1300. style='display:none'>之前标准</span></td>
  1301. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1302. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1303. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1304. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1305. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1306. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1307. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1308. </tr>
  1309. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1310. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1311. width:36pt'>77</td>
  1312. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1313. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1314. class="font10">DN65*32</font><font class="font11">*65</font></td>
  1315. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000073</td>
  1316. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1317. style='display:none'>之前标准</span></td>
  1318. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1319. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1320. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1321. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1322. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1323. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1324. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1325. </tr>
  1326. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1327. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1328. width:36pt'>78</td>
  1329. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1330. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN65*40*40</td>
  1331. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000074</td>
  1332. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1333. style='display:none'>之前标准</span></td>
  1334. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1335. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1336. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1337. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1338. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1339. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1340. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1341. </tr>
  1342. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1343. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1344. width:36pt'>79</td>
  1345. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1346. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN65*40*65</td>
  1347. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000075</td>
  1348. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1349. style='display:none'>之前标准</span></td>
  1350. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1351. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1352. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1353. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1354. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1355. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1356. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1357. </tr>
  1358. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1359. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1360. width:36pt'>80</td>
  1361. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1362. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1363. class="font10">DN80*</font><font class="font11">32*65</font></td>
  1364. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000076</td>
  1365. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1366. style='display:none'>之前标准</span></td>
  1367. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1368. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1369. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1370. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1371. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1372. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1373. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1374. </tr>
  1375. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1376. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1377. width:36pt'>81</td>
  1378. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1379. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1380. class="font10">DN80*</font><font class="font11">32*80</font></td>
  1381. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000077</td>
  1382. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1383. style='display:none'>之前标准</span></td>
  1384. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1385. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1386. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1387. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1388. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1389. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1390. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1391. </tr>
  1392. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1393. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1394. width:36pt'>82</td>
  1395. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌三通</td>
  1396. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN80*40*65</td>
  1397. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000078</td>
  1398. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1399. style='display:none'>之前标准</span></td>
  1400. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1401. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1402. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1403. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1404. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1405. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1406. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1407. </tr>
  1408. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1409. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1410. width:36pt'>83</td>
  1411. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌四通</td>
  1412. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1413. class="font10">D</font><font class="font11">N80*40*65*40</font></td>
  1414. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000079</td>
  1415. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1416. style='display:none'>之前标准</span></td>
  1417. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1418. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1419. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1420. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1421. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1422. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1423. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1424. </tr>
  1425. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1426. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1427. width:36pt'>84</td>
  1428. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌四通</td>
  1429. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN80*40*80*40</td>
  1430. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000080</td>
  1431. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1432. style='display:none'>之前标准</span></td>
  1433. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1434. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1435. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1436. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1437. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1438. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1439. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1440. </tr>
  1441. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1442. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1443. width:36pt'>85</td>
  1444. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式三通</td>
  1445. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1446. class="font10">DN1</font><font class="font11">00*100*100</font></td>
  1447. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000081</td>
  1448. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1449. style='display:none'>-2</span></td>
  1450. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1451. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1452. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1453. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1454. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1455. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1456. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1457. </tr>
  1458. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1459. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1460. width:36pt'>86</td>
  1461. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式三通</td>
  1462. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150*150*150</td>
  1463. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000082</td>
  1464. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1465. style='display:none'>-2</span></td>
  1466. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1467. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1468. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1469. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1470. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1471. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1472. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1473. </tr>
  1474. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1475. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1476. width:36pt'>87</td>
  1477. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式四通</td>
  1478. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1479. class="font10">DN150*150*150*</font><font class="font11">150</font></td>
  1480. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000083</td>
  1481. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1482. style='display:none'>-2</span></td>
  1483. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1484. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1485. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1486. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1487. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1488. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1489. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1490. </tr>
  1491. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1492. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1493. width:36pt'>88</td>
  1494. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械三通</td>
  1495. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1496. class="font10">D</font><font class="font11">N100*40*100</font></td>
  1497. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000084</td>
  1498. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1499. style='display:none'>-2</span></td>
  1500. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1501. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1502. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1503. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1504. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1505. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1506. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1507. </tr>
  1508. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1509. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1510. width:36pt'>89</td>
  1511. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械三通</td>
  1512. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1513. class="font10">D</font><font class="font11">N150*25*150</font></td>
  1514. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000085</td>
  1515. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1516. style='display:none'>-2</span></td>
  1517. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1518. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1519. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1520. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1521. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1522. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1523. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1524. </tr>
  1525. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1526. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1527. width:36pt'>90</td>
  1528. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械三通</td>
  1529. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1530. class="font10">D</font><font class="font11">N150*32*150</font></td>
  1531. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000086</td>
  1532. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1533. style='display:none'>-2</span></td>
  1534. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1535. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1536. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1537. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1538. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1539. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1540. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1541. </tr>
  1542. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1543. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1544. width:36pt'>91</td>
  1545. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械三通</td>
  1546. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1547. class="font10">D</font><font class="font11">N150*40*150</font></td>
  1548. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000087</td>
  1549. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1550. style='display:none'>-2</span></td>
  1551. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1552. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1553. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1554. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1555. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1556. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1557. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1558. </tr>
  1559. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1560. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1561. width:36pt'>92</td>
  1562. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
  1563. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1564. class="font10">D</font><font class="font11">N100*40*100*40</font></td>
  1565. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000088</td>
  1566. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1567. style='display:none'>-2</span></td>
  1568. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1569. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1570. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1571. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1572. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1573. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1574. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1575. </tr>
  1576. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1577. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1578. width:36pt'>93</td>
  1579. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
  1580. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1581. class="font10">D</font><font class="font11">N100*65*100*65</font></td>
  1582. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000089</td>
  1583. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1584. style='display:none'>-2</span></td>
  1585. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1586. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1587. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1588. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1589. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1590. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1591. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1592. </tr>
  1593. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1594. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1595. width:36pt'>94</td>
  1596. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
  1597. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1598. class="font10">D</font><font class="font11">N100*80*100*80</font></td>
  1599. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000090</td>
  1600. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1601. style='display:none'>-2</span></td>
  1602. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1603. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1604. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1605. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1606. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1607. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1608. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1609. </tr>
  1610. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1611. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1612. width:36pt'>95</td>
  1613. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
  1614. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1615. class="font10">D</font><font class="font11">N150*40*150*40</font></td>
  1616. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000091</td>
  1617. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1618. style='display:none'>-2</span></td>
  1619. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1620. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1621. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1622. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1623. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1624. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1625. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1626. </tr>
  1627. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1628. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1629. width:36pt'>96</td>
  1630. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
  1631. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1632. class="font10">D</font><font class="font11">N150*65*150*65</font></td>
  1633. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000092</td>
  1634. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1635. style='display:none'>-2</span></td>
  1636. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1637. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1638. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1639. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1640. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1641. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1642. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1643. </tr>
  1644. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1645. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1646. width:36pt'>97</td>
  1647. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹机械四通</td>
  1648. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1649. class="font10">D</font><font class="font11">N150*80*150*80</font></td>
  1650. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000093</td>
  1651. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1652. style='display:none'>-2</span></td>
  1653. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1654. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1655. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1656. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1657. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1658. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1659. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1660. </tr>
  1661. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1662. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1663. width:36pt'>98</td>
  1664. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹异径管箍</td>
  1665. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1666. class="font10">DN1</font><font class="font11">50*40</font></td>
  1667. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000094</td>
  1668. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1669. style='display:none'>-2</span></td>
  1670. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1671. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1672. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1673. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1674. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1675. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1676. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1677. </tr>
  1678. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1679. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1680. width:36pt'>99</td>
  1681. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹异径管箍</td>
  1682. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1683. class="font10">DN100*</font><font class="font11">65</font></td>
  1684. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000095</td>
  1685. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1686. style='display:none'>-2</span></td>
  1687. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1688. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1689. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1690. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1691. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1692. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1693. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1694. </tr>
  1695. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1696. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1697. width:36pt'>100</td>
  1698. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式螺纹异径管箍</td>
  1699. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN100*80</td>
  1700. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000096</td>
  1701. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1702. style='display:none'>-2</span></td>
  1703. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1704. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1705. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1706. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1707. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1708. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1709. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1710. </tr>
  1711. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1712. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1713. width:36pt'>101</td>
  1714. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式异径管箍</td>
  1715. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150*100</td>
  1716. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000097</td>
  1717. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1718. style='display:none'>-2</span></td>
  1719. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1720. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1721. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1722. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1723. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1724. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1725. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1726. </tr>
  1727. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1728. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1729. width:36pt'>102</td>
  1730. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽式90°弯头</td>
  1731. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
  1732. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000098</td>
  1733. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1734. style='display:none'>-2</span></td>
  1735. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1736. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1737. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1738. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1739. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1740. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1741. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1742. </tr>
  1743. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1744. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1745. width:36pt'>103</td>
  1746. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>沟槽法兰</td>
  1747. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
  1748. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000099</td>
  1749. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1750. style='display:none'>-2</span></td>
  1751. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1752. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1753. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1754. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1755. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1756. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1757. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1758. </tr>
  1759. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1760. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1761. width:36pt'>104</td>
  1762. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>卡箍</td>
  1763. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN100</td>
  1764. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000100</td>
  1765. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1766. style='display:none'>-2</span></td>
  1767. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1768. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1769. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1770. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1771. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1772. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1773. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1774. </tr>
  1775. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1776. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1777. width:36pt'>105</td>
  1778. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>卡箍</td>
  1779. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
  1780. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000101</td>
  1781. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  1782. style='display:none'>-2</span></td>
  1783. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1784. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1785. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1786. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1787. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1788. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1789. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1790. </tr>
  1791. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1792. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1793. width:36pt'>106</td>
  1794. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌螺栓(配螺帽、一个弹簧垫、2个平垫)</td>
  1795. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>M18*150</td>
  1796. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000102</td>
  1797. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1798. style='display:none'>之前标准</span></td>
  1799. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>套</td>
  1800. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1801. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1802. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1803. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1804. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1805. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1806. </tr>
  1807. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1808. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1809. width:36pt'>107</td>
  1810. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>法兰密封橡胶垫</td>
  1811. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1812. class="font10">D</font><font class="font11">N150</font></td>
  1813. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000103</td>
  1814. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1815. style='display:none'>之前标准</span></td>
  1816. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1817. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1818. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1819. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1820. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1821. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1822. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1823. </tr>
  1824. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1825. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1826. width:36pt'>108</td>
  1827. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>信号蝶阀</td>
  1828. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
  1829. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000104</td>
  1830. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1831. style='display:none'>之前标准</span></td>
  1832. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1833. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1834. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1835. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1836. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1837. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1838. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1839. </tr>
  1840. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1841. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1842. width:36pt'>109</td>
  1843. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>水流指示器(马鞍形)</td>
  1844. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN150</td>
  1845. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000105</td>
  1846. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1847. style='display:none'>之前标准</span></td>
  1848. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1849. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1850. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1851. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1852. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1853. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1854. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1855. </tr>
  1856. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1857. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1858. width:36pt'>110</td>
  1859. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>球阀</td>
  1860. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN15</td>
  1861. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000106</td>
  1862. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1863. style='display:none'>之前标准</span></td>
  1864. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1865. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1866. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1867. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1868. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1869. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1870. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1871. </tr>
  1872. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1873. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1874. width:36pt'>111</td>
  1875. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>球阀</td>
  1876. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN25</td>
  1877. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000107</td>
  1878. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1879. style='display:none'>之前标准</span></td>
  1880. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1881. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1882. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1883. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1884. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1885. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1886. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1887. </tr>
  1888. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1889. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1890. width:36pt'>112</td>
  1891. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>球阀</td>
  1892. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN20</td>
  1893. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000108</td>
  1894. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1895. style='display:none'>之前标准</span></td>
  1896. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1897. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1898. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1899. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1900. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1901. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1902. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1903. </tr>
  1904. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1905. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1906. width:36pt'>113</td>
  1907. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>压力表</td>
  1908. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>0-1.6MPa</td>
  1909. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000109</td>
  1910. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1911. style='display:none'>之前标准</span></td>
  1912. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1913. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1914. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1915. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1916. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1917. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1918. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1919. </tr>
  1920. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1921. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1922. width:36pt'>114</td>
  1923. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>表弯</td>
  1924. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN15</td>
  1925. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000110</td>
  1926. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1927. style='display:none'>之前标准</span></td>
  1928. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1929. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1930. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1931. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1932. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1933. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1934. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1935. </tr>
  1936. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1937. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1938. width:36pt'>115</td>
  1939. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>自动排气阀</td>
  1940. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN20</td>
  1941. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000111</td>
  1942. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1943. style='display:none'>之前标准</span></td>
  1944. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1945. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1946. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1947. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1948. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1949. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1950. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1951. </tr>
  1952. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1953. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1954. width:36pt'>116</td>
  1955. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>直立型喷头</td>
  1956. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'><font
  1957. class="font10">ZSTZ-15/68(K</font><font class="font11">=80 DN15)</font></td>
  1958. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000112</td>
  1959. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1960. style='display:none'>之前标准</span></td>
  1961. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1962. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1963. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1964. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1965. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1966. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1967. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1968. </tr>
  1969. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1970. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1971. width:36pt'>117</td>
  1972. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>直立型喷头</td>
  1973. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>ZSTZ-20/68(K=115
  1974. DN20)</td>
  1975. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000113</td>
  1976. <td class=xl82 style='border-top:none;border-left:none'>按照11号线<span
  1977. style='display:none'>之前标准</span></td>
  1978. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  1979. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1980. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1981. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1982. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1983. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1984. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  1985. </tr>
  1986. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  1987. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  1988. width:36pt'>118</td>
  1989. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>大红油漆</td>
  1990. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>13公斤/桶</td>
  1991. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000114</td>
  1992. <td class=xl82 style='border-top:none;border-left:none'> </td>
  1993. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>桶</td>
  1994. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  1995. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  1996. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  1997. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  1998. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  1999. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2000. </tr>
  2001. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2002. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2003. width:36pt'>119</td>
  2004. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>木跳板</td>
  2005. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>2m(长)*5cm(厚)*20cm(宽)</td>
  2006. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000115</td>
  2007. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2008. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>块</td>
  2009. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2010. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2011. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2012. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2013. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2014. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2015. </tr>
  2016. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2017. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2018. width:36pt'>120</td>
  2019. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜内外丝直接</td>
  2020. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>DN20</td>
  2021. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000116</td>
  2022. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2023. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  2024. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2025. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2026. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2027. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2028. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2029. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2030. </tr>
  2031. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2032. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2033. width:36pt'>121</td>
  2034. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>不锈钢扎带</td>
  2035. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>1米/条(宽度:1cm;厚度:0.05mm)</td>
  2036. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000117</td>
  2037. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2038. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>条</td>
  2039. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2040. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2041. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2042. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2043. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2044. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2045. </tr>
  2046. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2047. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2048. width:36pt'>122</td>
  2049. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>不锈钢扎带</td>
  2050. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>0.5米/条(宽度:1cm;厚度:0.05mm)</td>
  2051. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000118</td>
  2052. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2053. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>条</td>
  2054. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2055. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2056. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2057. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2058. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2059. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2060. </tr>
  2061. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2062. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2063. width:36pt'>123</td>
  2064. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>膨胀螺丝</td>
  2065. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>M6*8</td>
  2066. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000119</td>
  2067. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2068. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>盒</td>
  2069. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2070. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2071. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2072. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2073. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2074. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2075. </tr>
  2076. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2077. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2078. width:36pt'>124</td>
  2079. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>板牙</td>
  2080. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2081. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000120</td>
  2082. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2083. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>付</td>
  2084. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2085. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2086. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2087. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2088. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2089. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2090. </tr>
  2091. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2092. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2093. width:36pt'>125</td>
  2094. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>电动球阀</td>
  2095. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>BV03G2D32SA/220</td>
  2096. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000121</td>
  2097. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2098. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  2099. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2100. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2101. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2102. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2103. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2104. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2105. </tr>
  2106. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2107. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2108. width:36pt'>126</td>
  2109. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜线耳</td>
  2110. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>240mm2(长)</td>
  2111. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000122</td>
  2112. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2113. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  2114. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2115. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2116. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2117. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2118. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2119. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2120. </tr>
  2121. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2122. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2123. width:36pt'>127</td>
  2124. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜线耳</td>
  2125. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>240mm2(短)</td>
  2126. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000123</td>
  2127. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2128. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  2129. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2130. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2131. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2132. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2133. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2134. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2135. </tr>
  2136. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2137. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2138. width:36pt'>128</td>
  2139. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜线耳</td>
  2140. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>120mm2(长)</td>
  2141. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000124</td>
  2142. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2143. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  2144. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2145. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2146. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2147. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2148. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2149. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2150. </tr>
  2151. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2152. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2153. width:36pt'>129</td>
  2154. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铜线耳</td>
  2155. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>120mm2(短)</td>
  2156. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000125</td>
  2157. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2158. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  2159. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2160. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2161. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2162. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2163. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2164. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2165. </tr>
  2166. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2167. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2168. width:36pt'>130</td>
  2169. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>PVC排水直接</td>
  2170. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>Φ25</td>
  2171. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000126</td>
  2172. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2173. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  2174. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2175. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2176. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2177. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2178. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2179. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2180. </tr>
  2181. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2182. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2183. width:36pt'>131</td>
  2184. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>水泥</td>
  2185. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2186. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000127</td>
  2187. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2188. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>包</td>
  2189. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2190. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2191. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2192. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2193. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2194. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2195. </tr>
  2196. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2197. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2198. width:36pt'>132</td>
  2199. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>橡塑保温板材</td>
  2200. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>厚度25mm(容重48kg/m3)</td>
  2201. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000128</td>
  2202. <td class=xl82 style='border-top:none;border-left:none'>技术规格书<span
  2203. style='display:none'>-3</span></td>
  2204. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>平方</td>
  2205. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2206. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2207. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2208. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2209. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2210. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2211. </tr>
  2212. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2213. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2214. width:36pt'>133</td>
  2215. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>铝箔胶带</td>
  2216. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2217. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000129</td>
  2218. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2219. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>卷</td>
  2220. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2221. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2222. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2223. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2224. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2225. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2226. </tr>
  2227. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2228. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2229. width:36pt'>134</td>
  2230. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>镀锌线管直接</td>
  2231. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>Φ25</td>
  2232. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000130</td>
  2233. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2234. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  2235. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2236. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2237. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2238. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2239. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2240. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2241. </tr>
  2242. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2243. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2244. width:36pt'>135</td>
  2245. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>离墙码</td>
  2246. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>Φ25</td>
  2247. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000131</td>
  2248. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2249. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>个</td>
  2250. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2251. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2252. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2253. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2254. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2255. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2256. </tr>
  2257. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2258. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2259. width:36pt'>136</td>
  2260. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>六角钻尾螺丝</td>
  2261. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'>3cm长</td>
  2262. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000132</td>
  2263. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2264. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>包</td>
  2265. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2266. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2267. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2268. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2269. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2270. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2271. </tr>
  2272. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2273. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2274. width:36pt'>137</td>
  2275. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>玻璃胶(白色)</td>
  2276. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2277. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000133</td>
  2278. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2279. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>支</td>
  2280. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2281. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2282. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2283. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2284. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2285. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2286. </tr>
  2287. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2288. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2289. width:36pt'>138</td>
  2290. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'>毛巾</td>
  2291. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2292. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'>SFGS-000134</td>
  2293. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2294. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'>条</td>
  2295. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>0</td>
  2296. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'>#VALUE!</td>
  2297. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'>#VALUE!</td>
  2298. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'>#VALUE!</td>
  2299. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'>#VALUE!</td>
  2300. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2301. </tr>
  2302. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2303. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2304. width:36pt'> </td>
  2305. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2306. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2307. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2308. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2309. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2310. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2311. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2312. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2313. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2314. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2315. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2316. </tr>
  2317. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2318. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2319. width:36pt'> </td>
  2320. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2321. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2322. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2323. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2324. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2325. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2326. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2327. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2328. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2329. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2330. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2331. </tr>
  2332. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2333. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2334. width:36pt'> </td>
  2335. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2336. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2337. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2338. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2339. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2340. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2341. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2342. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2343. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2344. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2345. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2346. </tr>
  2347. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2348. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2349. width:36pt'> </td>
  2350. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2351. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2352. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2353. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2354. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2355. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2356. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2357. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2358. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2359. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2360. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2361. </tr>
  2362. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2363. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2364. width:36pt'> </td>
  2365. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2366. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2367. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2368. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2369. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2370. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2371. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2372. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2373. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2374. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2375. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2376. </tr>
  2377. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2378. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2379. width:36pt'> </td>
  2380. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2381. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2382. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2383. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2384. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2385. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2386. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2387. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2388. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2389. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2390. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2391. </tr>
  2392. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2393. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2394. width:36pt'> </td>
  2395. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2396. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2397. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2398. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2399. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2400. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2401. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2402. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2403. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2404. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2405. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2406. </tr>
  2407. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2408. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2409. width:36pt'> </td>
  2410. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2411. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2412. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2413. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2414. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2415. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2416. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2417. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2418. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2419. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2420. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2421. </tr>
  2422. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2423. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2424. width:36pt'> </td>
  2425. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2426. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2427. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2428. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2429. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2430. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2431. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2432. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2433. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2434. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2435. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2436. </tr>
  2437. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2438. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2439. width:36pt'> </td>
  2440. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2441. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2442. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2443. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2444. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2445. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2446. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2447. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2448. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2449. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2450. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2451. </tr>
  2452. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2453. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2454. width:36pt'> </td>
  2455. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2456. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2457. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2458. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2459. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2460. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2461. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2462. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2463. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2464. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2465. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2466. </tr>
  2467. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2468. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2469. width:36pt'> </td>
  2470. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2471. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2472. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2473. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2474. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2475. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2476. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2477. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2478. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2479. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2480. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2481. </tr>
  2482. <tr class=xl73 height=16 style='mso-height-source:userset;height:12.0pt'>
  2483. <td height=16 class=xl79 width=48 style='height:12.0pt;border-top:none;
  2484. width:36pt'> </td>
  2485. <td class=xl81 width=251 style='border-top:none;border-left:none;width:188pt'> </td>
  2486. <td class=xl81 width=265 style='border-top:none;border-left:none;width:199pt'> </td>
  2487. <td class=xl81 width=76 style='border-top:none;border-left:none;width:57pt'> </td>
  2488. <td class=xl82 style='border-top:none;border-left:none'> </td>
  2489. <td class=xl79 width=64 style='border-top:none;border-left:none;width:48pt'> </td>
  2490. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2491. <td class=xl79 width=87 style='border-top:none;border-left:none;width:65pt'> </td>
  2492. <td class=xl88 width=97 style='border-top:none;border-left:none;width:73pt'> </td>
  2493. <td class=xl88 width=72 style='border-top:none;border-left:none;width:54pt'> </td>
  2494. <td class=xl88 width=69 style='border-top:none;border-left:none;width:52pt'> </td>
  2495. <td class=xl79 width=147 style='border-top:none;border-left:none;width:110pt'> </td>
  2496. </tr>
  2497. </table>
  2498. </body>
  2499. </html>