концентрирование кислорода

яю /***************************************************************************** Copyright (c) 2001 Thomas Brattli (www.bratta.com) eXperience DHTML coolMenus - Get it at www.bratta.com Version 3.02 This script can be used freely as long as all copyright messages are intact. ******************************************************************************/ /***************************************************************************** Default browsercheck - Leave this one ******************************************************************************/ function lib_bwcheck(){ //Browsercheck (needed) this.ver=navigator.appVersion; this.agent=navigator.userAgent this.dom=document.getElementById?1:0 this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0; this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0; this.ie4=(document.all && !this.dom)?1:0; this.ie=this.ie4||this.ie5||this.ie6 this.mac=this.agent.indexOf("Mac")>-1 this.opera5=this.agent.indexOf("Opera 5")>-1 this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; this.ns4=(document.layers && !this.dom)?1:0; this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom) return this } var bw=new lib_bwcheck() //Making browsercheck object var mDebugging=1 //General debugging variable. Set to 0 for no debugging, 1 for alerts or 2 for status debugging. oCMenu=new makeCoolMenu("oCMenu") //Making the menu object. Argument: menuname oCMenu.useframes=0 //Do you want to use the menus as coolframemenu or not? (in frames or not) - Value: 0 || 1 oCMenu.frame="frmMain" //The name of your main frame (where the menus should appear). Leave empty if you're not using frames - Value: "main_frame_name" oCMenu.useclick=0 //If you want the menu to be activated and deactivated onclick only set this to 1. - Value: 0 || 1 /*If you set this to 1 you will get a "hand" cursor when moving over the links in NS4. NOTE: This does not apply to the submenus if the menu is used in frames due some mayor problems with NS4*/ oCMenu.useNS4links=1 //After adding the "hover effect" for netscape as well, all styles are lost. But if you want padding add it here. oCMenu.NS4padding=2 //If you have select boxes close to your menu the menu will check for that and hide them if they are in the way of the menu. //This feature does unfortunatly not work in NS4! oCMenu.checkselect=0 /*If you choose to have this code inside a linked js, or if your using frames it's important to set these variables. This will help you get your links to link to the right place even if your files are in different folders. The offlineUrl variable is the actual path to the directory where you js file are locally. This is just so you can test it without uploading. Remember to start it with file:/// and only use slashes, no backward slashes! Also remember to end with a slash */ oCMenu.offlineUrl="file:///C|/Inetpub/wwwroot/dhtmlcentral/" //Value: "path_to_menu_file_offline/" //The onlineUrl variable is the online path to your script. Place in the full path to where your js file is. Remember to end with a slash. oCMenu.onlineUrl="http://www.dhtmlcentral.com/coolmenus/examples/withoutframes/" //Value: "path_to_menu_file_online/" oCMenu.pagecheck=1 //Do you want the menu to check whether any of the subitems are out of the bouderies of the page and move them in again (this is not perfect but it hould work) - Value: 0 || 1 oCMenu.checkscroll=1 //Do you want the menu to check whether the page have scrolled or not? For frames you should always set this to 1. You can set this to 2 if you want this feature only on explorer since netscape doesn't support the window.onscroll this will make netscape slower (only if not using frames) - Value: 0 || 1 || 2 oCMenu.resizecheck=1 //Do you want the page to reload if it's resized (This should be on or the menu will crash in Netscape4) - Value: 0 || 1 oCMenu.wait=1000 //How long to wait before hiding the menu on mouseout. Netscape 6 is a lot slower then Explorer, so to be sure that it works good enough there you should not have this lower then 500 - Value: milliseconds //Background bar properties oCMenu.usebar=0 //If you want to use a background-bar for the top items set this on - Value: 1 || 0 oCMenu.barcolor="white" //The color of the background bar - Value: "color" oCMenu.barwidth="97%" //The width of the background bar. Set this to "menu" if you want it to be the same width as the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu" oCMenu.barheight="3%" //The height of the background bar. Set this to "menu" if you want it to be the same height as the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu" oCMenu.barx=0 //The left position of the bar. Set this to "menu" if you want it be the same as the left position of the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu" oCMenu.bary="95%" //The top position of the bar Set this to "menu" if you want it be the same as the top position of the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu" oCMenu.barinheritborder=1 //Set this to 1 if you want the bar to have the same border as the top menus - Value: 0 || 1 x2 = window.screen.availWidth; y2 = window.screen.availHeight; //Placement properties oCMenu.rows=1 //This controls whether the top items is supposed to be laid out in rows or columns. Set to 0 for columns and 1 for row - Value 0 || 1 oCMenu.fromleft="0%" //This is the left position of the menu. (Only in use if menuplacement below is 0 or aligned) (will change to adapt any borders) - Value: px || "%" oCMenu.fromtop="93%" //This is the left position of the menu. (Only in use if menuplacement below is 0 or aligned) (will change to adapt any borders) - Value: px || "%" oCMenu.pxbetween=0 //How much space you want between each of the top items. - Value: px || "%" oCMenu.menuplacement=0 //TOP LEVEL PROPERTIES - ALL OF THESE MUST BE SPESIFIED FOR LEVEL[0] oCMenu.level[0]=new Array() //Add this for each new level oCMenu.level[0].width="19%" //The default width for each level[0] (top) items. You can override this on each item by spesifying the width when making the item. - Value: px || "%" oCMenu.level[0].height="5%" //The default height for each level[0] (top) items. You can override this on each item by spesifying the height when making the item. - Value: px || "%" oCMenu.level[0].bgcoloroff="white" //The default background color for each level[0] (top) items. You can override this on each item by spesifying the backgroundcolor when making the item. - Value: "color" oCMenu.level[0].bgcoloron="white" //The default "on" background color for each level[0] (top) items. You can override this on each item by spesifying the "on" background color when making the item. - Value: "color" oCMenu.level[0].textcolor="Navy" //The default text color for each level[0] (top) items. You can override this on each item by spesifying the text color when making the item. - Value: "color" oCMenu.level[0].hovercolor="Navy" //The default "on" text color for each level[0] (top) items. You can override this on each item by spesifying the "on" text color when making the item. - Value: "color" //oCMenu.level[0].style="padding:1px; text-align:center; font-family:tahoma,arial,helvetica; font-size:12px; font-weight:bold" //The style for all level[0] (top) items. - Value: "style_settings" oCMenu.level[0].border=1 //The border size for all level[0] (top) items. - Value: px oCMenu.level[0].bordercolor="black" //The border color for all level[0] (top) items. - Value: "color" oCMenu.level[0].offsetX=4 //The X offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px oCMenu.level[0].offsetY=4 //The Y offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px/ oCMenu.level[0].NS4font="tahoma,arial,helvetica" oCMenu.level[0].NS4fontSize="2" oCMenu.makeMenu('top0','','K1>@ @0745;0','http://www.fips.ru/ipc8/ipc8_htm.htm','') oCMenu.makeMenu('top1','',' @0745;','http://www.fips.ru/ipc8/htm/ipc8-subclass-C_XML/ipc8-class_C.htm') oCMenu.makeMenu('top2','',' :;0AA','http://www.fips.ru/ipc8/htm/ipc8-subclass-C_XML/ipc8-subclass_C01.htm') oCMenu.makeMenu('top3','','','http://www.fips.ru/ipc8/htm/ipc8-subclass-C_XML/ipc8-C01B.htm#top') oCMenu.makeMenu('top5','','','http://www.fips.ru/ipc8/htm/ipc8-subclass-C_XML/ipc8-C01B.htm#end') //Leave these two lines! Making the styles and then constructing the menu oCMenu.makeStyle(); oCMenu.construct() C01B - 5<5B0;;8G5A:85 M;5548=5=8O@8<5G0=8O(1)  40==>4:;0AA5 4;O >?@545;5=8O B>G=>3> >1J5;L7>20=K G0AB> ?@8<5=O59 8 ?0B5=B=>9 ;8B5@0BC@5 B>@3>2K5 =0820=8O. [6] (2) !;54C5B >1@0I0BL 2=8?@545;5=8O 3@C?? E8<8G5A:8E M;52, A;54CNI85 ?>A;5 703>;>2:0 @0745;0  C. [3] (3) 1@0B8B5 2=8<0=85 =0 ?@8A;5 703>;>2:0 :;0AA0  C01, :>B>@>5 CAB0=02;8205B ?@028;> ?>A;54=59 ?>4E>4OI59 @C1@8:8, ?@84:;0AA>2  C01B - C01G 8 2 A04:;0AA0E. [8] (4) "5@0?52B8G5A:0O 0:B82=>ABL A>548=5=89 :;0AA8D8F8@C5BAO B0:65 2 ?>4:;0AA5  A 61P. [7] !>45@60=85 ?>4:;0AA0  ; "+  ; ;  +  3/00 4/00 5/00 6/00 !"-  3/00 +  % !/  7/00 9/00 11/00 ! ; !+   !+ );  !+  13/00 15/00 ! ;  !/  17/00 ";  !/  21/00 $!$ ;  !/  25/00 # ;  !/  31/00  ;  !/  33/00 !  "# ;    19/00 35/00  "+ +  23/00 !/ ! !!" #/ +% !",   .) "-+% !!"  37/00 !/ ! !!" #/ +% !", .) "-+ !!"  39/00 >4>@>4; 384@84K; 2>40; ?>;CG5=85 A8=B57-3070 87 C3;52>4>@>4>2 C01B 3/00 >4>@>4; 307>2K5 A45@60I85 2>4>@>4; 2K45;5=85 2>4>@>40 87 A45@60I8E 53> (@0745;5=85 307>2 D878G5A:8<8 A@54AB20<8  B 01D) ; >G8AB:0 2>4>@>40 (?@>872>4AB2> 2>4O=>3> 3070 8;8 A8=B57-3070 87 B25@4KE C3;5@>4A>45@60I8E 25I5AB2  C 10J; >G8AB:0 8;8 48D8:0F8O E83> A>AB020 3>@NG8E 307>2, A>45@60I8E >:A84 C3;5@>40,  C 10K) [3] C01B 3/02 .?>;CG5=85 2>4>@>40 8;8 307>2KE A45@60I8E 2>4>@>4 [3] C01B 3/04 ..@07;>65=85@30=8G5A:8E A>548=5=89, =0?@8<5@ 0<<80:0 [3] C01B 3/06 ..@50:F859 =5>@30=8G5A:8E A>548=5=89, A>45@60I8E ?>;>68B5;L=K9 8>= 2>4>@>40, =0?@84K, :8A;>B, >A=>20=89, 0<@30=8G5A:8AAB0=>28B5;O;87>4K  C 25B 1/04) [3] C01B 3/08 ...A <5B0;;0<8 [3] C01B 3/10 ....@50:F859 2>4O=>3> ?0@0 A <5B0;;0<8 [3] C01B 3/12 ...@50:F859 2>4O=>3> ?0@0 A >:A84>40 [3] C01B 3/14 ....8A?>;L7>20=85 =03@520=8O 8 ?0@0 [3] C01B 3/16 ....A 8A?>;L7>20=85@>2 [3] C01B 3/18 ....A 8A?>;L7>20=854286=KE B25@4KE G0AB8F [3] C01B 3/20 ...@50:F859 384@>:A84>2 2 A >:A84>40 [3] C01B 3/22 ..@07;>65=85>1@07=KE 8;8 684:8E >@30=8G5A:8E A>548=5=89 (:>:A>20=85 684:8E C3;5@>4A>45@60I8E 2  C 10B 55/00) [3] C01B 3/24 ...C3;52>4>@>4>2 [3] C01B 3/26 ....A 8A?>;L7>20=85@>2 [3] C01B 3/28 ....A 8A?>;L7>20=854286=KE B25@4KE G0AB8F [3] C01B 3/30 .....A 8A?>;L7>20=85>6865==>3> A;>O [3] C01B 3/32 ..@50:F859 307>>1@07=KE 8;8 684:8E >@30=8G5A:8E A>548=5=89 A 307>>1@07CNI8<8 035=B0<8, =0?@84>9, 48>:A84>40, 2>74CE>< [3] C01B 3/34 ...C3;52>4>@>4>2 A 307>>1@07CNI8<8 035=B0<8 [3] C01B 3/36 ....A 8A?>;L7>20=85@>40 8;8 A45@60I8E :8A;>@>4, 2 :0G5AB25 307>>1@07CNI8E 035=B>2 [3] C01B 3/38 ....A 8A?>;L7>20=85@>2 [3] C01B 3/40 .....A?5F8D8G=KE 4;O ?@>F5AA0 [3] C01B 3/42 .....A 8A?>;L7>20=854286=KE B25@4KE G0AB8F [3] C01B 3/44 ......A 8A?>;L7>20=85>6865==>3> A;>O [3] C01B 3/46 ....A 8A?>;L7>20=8548G5A:8 ?>4>3@52054286=KE B25@4KE 25I5AB2, =0?@874CH=K2K< 4CBL5< [3] C01B 3/48 ....A ?>A;54CNI59 @50:F859 2>4O=>3> ?0@0 A >:A84>40 [3] C01B 3/50 .2K45;5=85 2>4>@>40 8;8 307>2, A>45@60I8E 2>4>@>4, 87 307>2KE A<5A59, =0?@8G8AB:0 ( 3/14 8<55B ?@58) [3] C01B 3/52 ..?CB5=B0:B8@>20=8O A 684:>ABOB@01>B0==KE 684:>AB59 [3] C01B 3/54 ...2:;NG0O :0B0;8B8G5A:CN @50:F8N [3] C01B 3/56 ..?CB5=B0:B8@>20=8O A B25@4K<8 25I5AB20B@01>B0==KE B25@4KE 25I5AB2 [3] C01B 3/58 ...2:;NG0O :0B0;8B8G5A:CN @50:F8N [3] C01B 4/00 7>B>?K 2>4>@>40; 8E =5>@30=8G5A:85 A>548=5=8O 8 ?>;CG5=85 B0:8E A>548=5=89 @50:F859 87>B>?=>3> >1<5=0, =0?@8<5@ NH3+D2-&gt;NH2D+HD (@0745;5=85 87>B>?>2  B 01D 59/00; ?@>G85 E81@07>20=8O A>548=5=89 87>B>?>2 2>4>@>40, A>B25BAB2CNI85 3@C??K 4;O A>548=5=89 2>4>@>40 2 :;0AA5  C 01) [2] C01B 5/00 >40 C01B 5/02 .BO65;0O 2>40; ?>;CG5=85 55 ?@8 ?>I8 E89 @50:F88 87>B>?>2 2>4>@>40 8;8 8E A>548=5=89, =0?@8<5@ 4ND3+7O2-&gt;4NO2+ 6D2O, 2D2+O2-&gt;2D2O C01B 6/00 84@84K 2; =>1>@0=K 8;8 481>@0=K; 8E :>548=5=8O (2KAH85 384@84K 1>@0, 70@0  35/00) [2] C01B 6/02 .384@84K ?5@5E>4=KE M;52; 8E 0448B82=K5 :>548=5=8O C01B 6/04 .384@84K I5;>G=KE, I5;>G=>75<5;L=KE 2, 15@8;;8O 8;8 548=5=8O C01B 6/06 .384@84K 0;N<8=8O, 30;;8O, 8=48O, B0;;8O, 35@;>20, A28=F0, <KHLO:0, AC@L<K, 28A;>=8O; =>1>@0=K; 481>@0=K; 8E 0448B82=K5 :>548=5=8O C01B 6/10 ..=>1>@0=K; 481>@0=K; 8E 0448B82=K5 :>548=5=8O [2] C01B 6/11 ...?>;CG5=85 87 1>@0 8;8 =5>@30=8G5A:8E A>548=5=89, A>45@60I8E 1>@ 8 :8A;>@>4 [2] C01B 6/13 ...0448B82=K5 :>548=5=8O =>1>@0=0 8;8 481>@0=0, =0?@8AD8=>< [2] C01B 6/15 ....1>@>384@84K 2; 8E 0448B82=K5 :>548=5=8O [2] C01B 6/17 .....?>;CG5=85 87 1>@0 8;8 =5>@30=8G5A:8E A>548=5=89, A>45@60I8E 1>@ 8 :8A;>@>4 [2] C01B 6/19 .....?>;CG5=85 87 ?@>G8E 1>@A>45@60I8E A>548=5=89 [2] C01B 6/21 ......?>;CG5=85 1>@>384@84>2 I5;>G=KE 8;8 I5;>G=>75<5;L=KE 2, 548=5=8O, =0?@8<5@ LiBH4.2N2H4, NaB2H7 [2] C01B 6/23 ......?>;CG5=85 1>@>384@84>2 ?@>G8E 2, =0?@8@>384@840 0;N548=5=8O, =0?@8<5@ Li[Al(BH4)3H] [2] C01B 6/24 .384@84K, A>45@60I85 =5 <5=55 42CE 2, =0?@8<5@ Li(AlH4); 8E 0448B82=K5 :>548=5=8O ( 6/13 - 6/23 8<5NB ?@58) [2] C01B 6/26 ..?>;CG5=85 87 2 A 2KAH59 20;5=B=>ABLN 8;8 87 8E >:A84>2 8;8 87 A>;59 8E :8A;>@>4A>45@60I8E :8A;>B C01B 6/34 .>G8AB:0; AB018;870F8O 0;>35=K; 8E A>548=5=8O C01B 7/00 0;>35=K; 30;>35=>2>4>@>4=K5 :8A;>BK (:8A;>@>4=K5 :8A;>BK  11/00) C01B 7/01 .E;>@; E;>@8ABK9 2>4>@>4 [2] C01B 7/03 ..?>;CG5=85 87 E;>@84>2 [2,3] C01B 7/04 ...?>;CG5=85 E;>@0 87 E;>@8AB>3> 2>4>@>40 [3] C01B 7/05 ...?>;CG5=85 87 E;>@8AB>3> 0<=8O [2,3] C01B 7/07 ..>G8AB:0 [2,3] C01B 7/075 ...684:>3> E;>@0 [2,3] C01B 7/09 .1@>4>@>4 [2] C01B 7/13 .9>4; 9>48ABK9 2>4>@>4 [2] C01B 7/14 ..9>4 [2] C01B 7/16 ...?>;CG5=85 87 @A:8E 2>4>@>A;59 [2] C01B 7/19 .DB>@; DB>@8ABK9 2>4>;@>4 [2] C01B 7/20 ..DB>@ [2] C01B 7/24 .A>548=5=85 30;>35=>2 4@C3 A 4@C3>< C01B 9/00 1I85 A?>A>1K ?>;CG5=8O A>;59 30;>35=>2>4>@>4=KE :8A;>B (>B45;L=K5 A>;8 AB@8 @5;520=B=K5 ?>43@C??K ?>4:;0AA>2  C 01B - C 01G, A>>B25BAB2CNI85 M;5<5=B0<, A2O70==K35=>;8B8G5A:85 A?>A>1K ?>;CG5=8O =5>@30=8G5A:8E A>548=5=89  C 25B) C01B 9/02 .E;>@84K C01B 9/04 .1@><84K C01B 9/06 .9>484K C01B 9/08 .DB>@84K C01B 11/00 :A84K 8;8 :8A;>@>4A>45@60I85 :8A;>BK 30;>35=>2; 8E A>;8 C01B 11/02 .>:A84K E;>@0 C01B 11/04 .E;>@=>20B8AB0O :8A;>B0 C01B 11/06 ..38?>E;>@8BK, =0?@8@=0O 8725ABL C01B 11/08 .E;>@8AB0O :8A;>B0 C01B 11/10 ..E;>@8BK C01B 11/12 .E;>@=>20B0O :8A;>B0 C01B 11/14 ..E;>@0BK C01B 11/16 .E;>@=0O :8A;>B0 C01B 11/18 ..?5@E;>@0BK C01B 11/20 .:8A;>@>4=K5 A>548=5=8O 1@><0 C01B 11/22 .:8A;>@>4=K5 A>548=5=8O 9>40 C01B 11/24 .:8A;>@>4=K5 A>548=5=8O DB>@0 8A;>@>4; >:A84K 8;8 384@>:A84K 2>>1I5; ?5@>:A84=K5 A>548=5=8O C01B 13/00 8A;>@>4; >7>=; >:A84K 8;8 384@>:A84K 2>>1I5 C01B 13/02 .?>;CG5=85 :8A;>@>40 (A6865=85<  F 25J) C01B 13/08 ..87 2>74CE0 A ?>ILN >:A84>2 2, =0?@8:A840 10@8O, >:A840 <0@30=F0 C01B 13/10 .?>;CG5=85 >7>=0 C01B 13/11 ..A ?>ILN M;5:B@8G5A:>3> @07@O40 [2] C01B 13/14 .A?>A>1K ?>;CG5=8O >:A84>2 8;8 384@>:A84>2 2>>1I5 (>B45;L=K5 >:A84K 8 384@>:A84K 2:;NG5=K 2 ?>43@C??K ?>4:;0AA>2  C 01B - C 01G 8;8  C 25B 2 A>>B25BAB2NI85 M;5@>4>:A83@C??>9) C01B 13/16 ..>G8AB:0 [3] C01B 13/18 ..B5@<8G5A:865=85548=5=89, =0?@8;59 8;8 384@>:A84>2 [3] C01B 13/20 ..>:8A;5=85< M;52 2 307>>1@07=>AB>O=88; >:8A;5=85;87>548=5=89 2 307>>1@07=>AB>O=88 [3] C01B 13/22 ...30;>35=84>2 8;8 >:A830;>35=84>2 [3] C01B 13/24 ....2 ?@8ACBAB288 3>@OG8E 307>>1@07=KE ?@>4C:B>2 A3>@0=8O [3] C01B 13/26 ....2 ?@8ACBAB288 ?A524>>6865==>3> A;>O [3] C01B 13/28 ....A 8A?>;L7>20=85< ?;073> @07@O40 [3] C01B 13/30 ....C40;5=85 8 >E;0645=85 ACA?5=788, A>45@60I59 >:A84 [3] C01B 13/32 ..>:8A;5=85;87>< M;52 8;8 A>548=5=89 2 684:>AB>O=88 [3] C01B 13/34 ..>:8A;5=85;87>20==KE @0AB2>@>2 [3] C01B 13/36 ..@50:F8OA0645=8O 2 @0AB2>@0E [3] C01B 15/00 5@>:A84K; 384@>?5@>:A84K; ?5@:8A;>BK 8;8 8E A>;8; =04?5@>:A84K; >7>=84K C01B 15/01 .?5@>:A84 2>4>@>40 [3] C01B 15/013 ..2K45;5=85; >G8AB:0;:>=F5=B@8@>20=85 [3] C01B 15/017 ...1572>4=K9 ?5@>:A84 2>4>@>40; 1572>4=K5 @0AB2>@K 8;8 307>2K5 A45@60I85 ?5@>:A84 2>4>@>40 [3] C01B 15/022 ..?>;CG5=85 87 >@30=8G5A:8E A>548=5=89 [2] C01B 15/023 ...87 0;:8;0=B@0E8=>=0 [3] C01B 15/024 ...87 C3;52>4>@>4>2 [3] C01B 15/026 ...87 A?8@B>2 [3] C01B 15/027 ..?>;CG5=85 87 2>4K [3] C01B 15/029 ..?>;CG5=85 87 2>4>@>40 8 :8A;>@>40 [3] C01B 15/03 ..?>;CG5=85 87 =5>@30=8G5A:8E ?5@>:A84=KE A>548=5=89, =0?@8:A8AC;LD0B>2 [3] C01B 15/032 ...87 ?5@>:A84>2 2 [3] C01B 15/037 ..AB018;870F8O 22545=85102>: [3] C01B 15/04 .?5@>:A84K 8 384@>?5@>:A84K 2; =04?5@>:A84K; >7>=84K [3] C01B 15/043 ..I5;>G=KE, I5;>G=>75<5;L=KE 2 8;8 <03=8O [2,3] C01B 15/047 ..BO65;KE 2 [2,3] C01B 15/055 .384@>?5@>:A84K ( 15/04 8<55B ?@58) ; ?5@:8A;>BK 8;8 8E A>;8 [3] C01B 15/06 ..A>45@60I85 A5@C [3] C01B 15/08 ...?5@>:A8AC;LD0BK [3] C01B 15/10 ..A>45@60I85 C3;5@>4 [3] C01B 15/12 ..A>45@60I85 1>@ [3] C01B 15/14 ..A>45@60I85 :@5<=89 [3] C01B 15/16 ..A>45@60I85 D>AD>@ [3] C01B 17/00 !5@0; 55 A>548=5=8O C01B 17/02 .?>;CG5=85 A5@K; >G8AB:0 C01B 17/027 ..872;5G5=85 A5@K 87 AK@LO, A>45@60I53> M;5<5=B0@=CN A5@C, =0?@8<5@ 87 ;N:A-B@01>B0==>9 1>;>B=>9 @C4K); >G8AB:0 [3] C01B 17/033 ...A 8A?>;L7>20=852 [3] C01B 17/04 ..87 307>>1@07=KE A>548=5=89 A5@K, 2 B>>1@07=KE AC;LD84>2 C01B 17/05 ...:@KA>10<8 [3] C01B 17/06 ..87 =5307>>1@07=KE AC;LD84>2 8(8;8) 2, A>45@60I8E ?>4>1=K5 AC;LD84K, =0?@8<5@ 87 @C4 C01B 17/10 ..B>=:>48A?5@A=0O A5@0, =0?@8<5@ AC1;820==0O A5@0, A5@=K9 F25B C01B 17/12 ..=5@0AB2>@8<0O A5@0 (<N-A5@0) C01B 17/16 .A5@>2>4>@>4K C01B 17/18 ..?>;8AC;LD84 2>4>@>40 C01B 17/20 .A?>A>1K ?>;CG5=8O AC;LD84>2 8;8 ?>;8AC;LD84>2 2>>1I5 (AC;LD84K 8;8 ?>;8AC;LD84K 0<=8O  C 01C; AC;LD84K 8;8 ?>;8AC;LD84K 2, :@>2 8 ?>;8AC;LD84>2 I5;>G=KE 2, =F8O 8;8 10@8O, AB@8 A>>B25BAB2CNI85 MB8< <5B0;;043@C??K ?>4:;0AA>2  C 01F 8;8  C 01G) C01B 17/22 .AC;LD84K 8;8 ?>;8AC;LD84K I5;>G=KE 2 C01B 17/24 ..?>;CG5=85 ?CB5AAB0=>2;5=8O C01B 17/26 ...C3;5< C01B 17/28 ...2>AAB0=02;820NI8<8 3070<8 C01B 17/30 ..?>;CG5=85 87 0<0;L30<K :0;8O 8;8 =0B@8O ?@8 2708459AB288 A A5@>9 8;8 AC;LD840<8 C01B 17/32 ..384@>AC;LD84K =0B@8O 8;8 :0;8O C01B 17/34 ..?>;8AC;LD84K =0B@8O 8;8 :0;8O C01B 17/36 ..>G8AB:0 C01B 17/38 ..>1572>6820=85 C01B 17/40 ..?>;CG5=85 2 >?@545;5==>9 D>@<5, =0?@8<5@ 2 3@0=C;0E C01B 17/42 .AC;LD84K 8;8 ?>;8AC;LD84K =F8O 8;8 10@8O C01B 17/43 ..?>;CG5=85 87 >:A84>2 8;8 384@>:A84>2 ?@8 2708459AB288 A A5@>9 8;8 A5@>2>4>@>4>< C01B 17/44 ..?>;CG5=85 ?CB5AAB0=>2;5=8O AC;LD0B>2 C01B 17/45 .A>548=5=8O, A>45@60I85 A5@C 8 30;>35=K, A :8A;>@>4> C01B 17/46 .A>548=5=8O, A>45@60I85 A5@C, 30;>35=K, 2>4>@>4 8 :8A;>@>4 C01B 17/48 .48>:A84 A5@K; A5@=8AB0O :8A;>B0 C01B 17/50 ..?>;CG5=85 48>:A840 A5@K C01B 17/52 ...>1683>2  C 22B 1/00 8<55B ?@58) C01B 17/54 ...A6830=85< M;59 A5@K C01B 17/56 ...>B45;5=85; >G8AB:0 C01B 17/58 ...2K45;5=85 48>:A840 A5@K 87 :8A;KE A; 8 B.?. C01B 17/60 ...2K45;5=85 48>:A840 A5@K 87 307>2 C01B 17/62 .A?>A>1K ?>;CG5=8O AC;LD8B>2 2>>1I5 (>B45;L=K5 AC;LD8BK A43@C??K ?>4:;0AA>2  C 01B - C 01G A>>B25BAB2CNI85 :0B8>=C A>;8) C01B 17/64 .B8>AC;LD0BK; 48B8>=8BK; ?>;8B8>=0BK C01B 17/66 ..48B8>=8BK C01B 17/69 .B@8>:A84 A5@K; A5@=0O :8A;>B0 [3] C01B 17/70 ..AB018;870F8O 30<@:A840 A5@K C01B 17/74 ..?>;CG5=85 [3] C01B 17/76 ...:>=B0:B=KA>10<8 C01B 17/765 ....3>ABC?5=G0B>9 :>=25@A859 SO3 [3] C01B 17/77 ....2 ?A524>>6865==>5 [3] C01B 17/775 ....2 684:>9 D075 8;8 :@KA>10@>2 [3] C01B 17/78 ....E0@0:B5@87CNI85AO 8A?>;L7C5<K@0<8 C01B 17/79 .....A>45@60I8E 20=0489 [3] C01B 17/80 ....CAB@>9AB20 C01B 17/82 ...?>;CG5=85 A5@=>9 :8A;>BK A?>A>1>;L7CNI8:A84 07>B0 C01B 17/84 ....:0A>1 C01B 17/86 ....10H5==K9 A?>A>1 C01B 17/88 ..:>=F5=B@8@>20=85 A5@=>9 :8A;>BK C01B 17/90 ..>B45;5=85; >G8AB:0 C01B 17/92 ...2K45;5=85 87 :8A;KE A; 8 B.?. C01B 17/94 ...2K45;5=85 87 =8B@CNI8E :8A;>B C01B 17/96 .A?>A>1K ?>;CG5=8O AC;LD0B>2 2>>1I5 (>B45;L=K5 AC;LD0BK ,AB@8 @5;520=B=K5 ?>43@C??K ?>4:;0AA>2  C 01B - C 01G A>>B25BAB2CI85 :0B8>=C A>;8) C01B 17/98 .?@>G85 A>548=5=8O, A>45@60I85 A5@C 8 :8A;>@>4 (=04A5@=K5 :8A;>BK  15/06; ?5@AC;LD0BK  15/08) C01B 19/00 !5;5=; B5;;C@; 8E A>548=5=8O (A>548=5=8O A D>AD>@><  25/14) C01B 19/02 .M;5<5=B0@=K9 A5;5= 8;8 B5;;C@ [3] C01B 19/04 .18=0@=K5 A>548=5=8O [3] C01B 21/00 7>B; 53> A>548=5=8O C01B 21/02 .?>;CG5=85 07>B0 (87 0<<80:0  3/04) C01B 21/04 .>G8AB:0 8;8 >B45;5=85 07>B0 (A6865=85<  F 25J) C01B 21/06 .18=0@=K5 A>548=5=8O 07>B0 A <5B0;;0<8, :@5<=85@>< (0784K  разделы измеритель сопротивление компания макса линдера легранд купить раструб кулер газонокосилка stiga проект электропроводка профессиональный психолог сухой мороженый сушильный машина frigidaire вакуумный упаковочный серверные корпус консольный переключатель зал аэробика асбест встраиваемый вытяжка автоинформатор программа шифрование данный доставка хим. реагент иномарка сушильный машина electrolux отбеливание распыление ароматизатор билет большой оркестр креольский танго профессиональный фарфор избавиться спам индивидуальный банковский ячейка виные холодильник покраска аэротенк антенна холодильник оптом 1000 холодильник купить джойстик центр проктология российский флаг билет ммдм тонировка стекол трубогиб дорном электроинструмент metabo вакуумный упаковочный купить минимойку переводческий бюро ротационный rvg шумок дмитрий владимирович экстракт корень лопух сух. фирменный флаг intex raymond weil shimadzu нард скачать ленинградский вокзал билет 5440.16 (крышка) слюдопластовые втулка тонирование стекла очки ночной видение проведение лотерея купить айсбест вакансия красноярск ваза 2115 детский лагерь пионер пекарня кофе дорога госпиталь мэш время иваново морозильный витрина детский гинеколог флюрисцентная краска герб область штукатурка фасадный краска ржавчина сглаз сварочный пост очистка подогреватель красный площадь сегодня уличный барбекю бюро переводчик охота лис устройство плавный пуск автоматический оповещение mobil pegasus чувствительный кожа пежо 407 слим лифт k610 купить рукавица решетка оцинкованный вызов врач антигололедные реагент фризер бюджетирование подбор контрацепция радиодоступ билет хоккей мытье потолок холодильный камера фейрверк вечеринка узи сделать цвет dufour силуэт слименд лифт переработка резина спецобувь оптом зиплок спецобувь оптом чувствительный кожа нейминг винный холодильник магнитно-маркерные доска крот dr серверные корпус консольный переключатель телематические служба витрина подогреваемый снос любой конструкция заказать обед монетница измеритель петля фаза нуль сэндвич кофе-бар мужчина выходной маршрутизатор цвет гармония иномарка спб доставка dhl сейфовые ячейка оркестр креольский танго легранд i`m o.k./герои гроб ленинградский вокзал билет асбест подшипниковый узел подбор эмаль охота быкова мрт коленный сустав fargo стоматологический услуга концентрирование кислорода чувствительный кожа консультирование организация предохранитель пкэ избавиться спам врач-гинеколог man гильза архыз inerta краска рассылка корреспонденция вихревой теплогенераторы профиль salamander центр консультирование электрокотел врач акушер гинеколог shimadzu soflens comfort фотопечать телефонный обзвон токовый клещ neri karra кожгалантерея ваза 2115 protherm вытяжка виные холодильник kyiv apartaments service видеорегистраторы производственный тара отбеливание sony ericsson k790i купить геомаш-центр лак краска антенна бустер иностранный долг электрокардиограф озонатор воздуха изготовление пленка отбеливание магнитный доска зиплок время кострома мва спецобувь кбе экг 4у shell omala купить ломтерезку концентрирование кислорода