Advertisement
Guest User

Untitled

a guest
Jun 1st, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 22.54 KB | None | 0 0
  1. // Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
  2. // Jad home page: http://www.geocities.com/kpdus/jad.html
  3. // Decompiler options: braces fieldsfirst space lnc
  4.  
  5. package info.naukasovetov.giaprem;
  6.  
  7. import android.app.Activity;
  8. import android.content.Intent;
  9. import android.os.AsyncTask;
  10. import android.os.Bundle;
  11. import android.view.View;
  12. import android.widget.AdapterView;
  13. import android.widget.ArrayAdapter;
  14. import android.widget.ListView;
  15. import android.widget.TextView;
  16. import java.io.IOException;
  17. import java.util.ArrayList;
  18. import org.jsoup.Connection;
  19. import org.jsoup.Jsoup;
  20. import org.jsoup.nodes.Document;
  21. import org.jsoup.nodes.Element;
  22. import org.jsoup.select.Elements;
  23.  
  24. // Referenced classes of package info.naukasovetov.giaprem:
  25. //            Zadanie, Zadanierus
  26.  
  27. public class Vyborzadan extends Activity
  28. {
  29.     public class ParserUrl extends AsyncTask
  30.     {
  31.  
  32.         private Document doc;
  33.         private String name;
  34.         private Elements rows;
  35.         final Vyborzadan this$0;
  36.  
  37.         protected volatile Object doInBackground(Object aobj[])
  38.         {
  39.             return doInBackground((String[])aobj);
  40.         }
  41.  
  42.         protected transient ArrayList doInBackground(String as[])
  43.         {
  44.             doc = Jsoup.connect(linkPredmetVz).timeout(10000).get();
  45.             rows = doc.select("a[href*=theme]");
  46.             if (doc == null)
  47.             {
  48.                 namesVz.add("\u0418\u0437\u0432\u0438\u043D\u0438\u0442\u0435 \u0437\u0430 \u043D\u0435\u0443\u0434\u043E\u0431\u0441\u0442\u0432\u0430 - \u043E\u0448\u0438\u0431\u043A\u0430 \u0441\u0430\u0439\u0442\u0430, \u0437\u0430\u0439\u0434\u0438\u0442\u0435 \u043F\u043E\u0437\u0436\u0435");
  49.             }
  50.             namesVz.clear();
  51.             int i = 0;
  52. _L2:
  53.             if (i >= rows.size())
  54.             {
  55.                 break; /* Loop/switch isn't completed */
  56.             }
  57.             as = rows.get(i);
  58.             name = as.attr("abs:href");
  59.             namesVz.add(name);
  60.             as = as.text().replace("-", " ");
  61.             name = Integer.toString(i + 1).concat((new StringBuilder()).append(" - ").append(as).toString());
  62.             namesVz.add(name);
  63.             i++;
  64.             if (true) goto _L2; else goto _L1
  65. _L1:
  66.             try
  67.             {
  68.                 rows.clear();
  69.             }
  70.             // Misplaced declaration of an exception variable
  71.             catch (String as[])
  72.             {
  73.                 namesVz.add("\u0418\u0437\u0432\u0438\u043D\u0438\u0442\u0435 \u0437\u0430 \u043D\u0435\u0443\u0434\u043E\u0431\u0441\u0442\u0432\u0430 - \u043E\u0448\u0438\u0431\u043A\u0430 \u0441\u0430\u0439\u0442\u0430, \u0437\u0430\u0439\u0434\u0438\u0442\u0435 \u043F\u043E\u0437\u0436\u0435");
  74.             }
  75.             return namesVz;
  76.         }
  77.  
  78.         protected volatile void onPostExecute(Object obj)
  79.         {
  80.             onPostExecute((ArrayList)obj);
  81.         }
  82.  
  83.         protected void onPostExecute(ArrayList arraylist)
  84.         {
  85.             super.onPostExecute(arraylist);
  86.             vyborPred();
  87.         }
  88.  
  89.         public ParserUrl()
  90.         {
  91.             this$0 = Vyborzadan.this;
  92.             super();
  93.         }
  94.     }
  95.  
  96.     public class ParserUrl2 extends AsyncTask
  97.     {
  98.  
  99.         private int k;
  100.         private String name2;
  101.         final Vyborzadan this$0;
  102.  
  103.         protected volatile Object doInBackground(Object aobj[])
  104.         {
  105.             return doInBackground((ArrayList[])aobj);
  106.         }
  107.  
  108.         protected transient ArrayList doInBackground(ArrayList aarraylist[])
  109.         {
  110.             k = namesVz.size();
  111.             namesVz2.clear();
  112.             for (int i = 1; i < k; i += 2)
  113.             {
  114.                 name2 = (String)namesVz.get(i);
  115.                 namesVz2.add(name2);
  116.             }
  117.  
  118.             return namesVz2;
  119.         }
  120.  
  121.         protected volatile void onPostExecute(Object obj)
  122.         {
  123.             onPostExecute((ArrayList)obj);
  124.         }
  125.  
  126.         protected void onPostExecute(ArrayList arraylist)
  127.         {
  128.             super.onPostExecute(arraylist);
  129.             LvZadanie.setAdapter(adapterVz);
  130.         }
  131.  
  132.         public ParserUrl2()
  133.         {
  134.             this$0 = Vyborzadan.this;
  135.             super();
  136.         }
  137.     }
  138.  
  139.  
  140.     private ListView LvZadanie;
  141.     private ArrayAdapter adapterVz;
  142.     public String ekzamen;
  143.     public String linkPredmetVz;
  144.     public ArrayList namesVz;
  145.     public ArrayList namesVz2;
  146.     public ParserUrl nmnVz;
  147.     public ParserUrl2 nmnVz2;
  148.     public String textPredmet;
  149.  
  150.     public Vyborzadan()
  151.     {
  152.         namesVz = new ArrayList();
  153.         namesVz2 = new ArrayList();
  154.     }
  155.  
  156.     protected void onCreate(Bundle bundle)
  157.     {
  158.         byte byte1;
  159.         byte1 = -1;
  160.         super.onCreate(bundle);
  161.         setContentView(0x7f03001c);
  162.         bundle = (TextView)findViewById(0x7f0a005e);
  163.         textPredmet = getIntent().getExtras().getString("textPredmet");
  164.         ekzamen = getIntent().getExtras().getString("ekzamen");
  165.         bundle.setText(textPredmet);
  166.         bundle = ekzamen;
  167.         bundle.hashCode();
  168.         JVM INSTR lookupswitch 2: default 100
  169.     //                   69603: 216
  170.     //                   79213: 202;
  171.            goto _L1 _L2 _L3
  172. _L1:
  173.         byte byte0 = -1;
  174. _L8:
  175.         byte0;
  176.         JVM INSTR tableswitch 0 1: default 124
  177.     //                   0 230
  178.     //                   1 641;
  179.            goto _L4 _L5 _L6
  180. _L23:
  181.         nmnVz = new ParserUrl();
  182.         nmnVz.execute(new String[] {
  183.             linkPredmetVz
  184.         });
  185.         LvZadanie = (ListView)findViewById(0x7f0a005f);
  186.         adapterVz = new ArrayAdapter(this, 0x1090003, namesVz2);
  187.         LvZadanie.setOnItemClickListener(new android.widget.AdapterView.OnItemClickListener() {
  188.  
  189.             final Vyborzadan this$0;
  190.  
  191.             public void onItemClick(AdapterView adapterview, View view, int i, long l)
  192.             {
  193.                 Object obj;
  194.                 adapterview = (TextView)view;
  195.                 view = (String)namesVz.get(i * 2);
  196.                 obj = textPredmet;
  197.                 i = -1;
  198.                 ((String) (obj)).hashCode();
  199.                 JVM INSTR lookupswitch 2: default 64
  200.             //                           -1670945313: 154
  201.             //                           -1054138287: 169;
  202.                    goto _L1 _L2 _L3
  203. _L1:
  204.                 break; /* Loop/switch isn't completed */
  205. _L3:
  206.                 break MISSING_BLOCK_LABEL_169;
  207. _L4:
  208.                 switch (i)
  209.                 {
  210.                 default:
  211.                     obj = new Intent(Vyborzadan.this, info/naukasovetov/giaprem/Zadanie);
  212.                     ((Intent) (obj)).putExtra("textZadanie", adapterview.getText().toString());
  213.                     ((Intent) (obj)).putExtra("linkPredmet", view);
  214.                     ((Intent) (obj)).putExtra("textPredmet", textPredmet);
  215.                     startActivity(((Intent) (obj)));
  216.                     return;
  217.  
  218.                 case 0: // '\0'
  219.                     obj = new Intent(Vyborzadan.this, info/naukasovetov/giaprem/Zadanierus);
  220.                     ((Intent) (obj)).putExtra("textZadanie", adapterview.getText().toString());
  221.                     ((Intent) (obj)).putExtra("linkPredmet", view);
  222.                     ((Intent) (obj)).putExtra("textPredmet", textPredmet);
  223.                     startActivity(((Intent) (obj)));
  224.                     return;
  225.  
  226.                 case 1: // '\001'
  227.                     obj = new Intent(Vyborzadan.this, info/naukasovetov/giaprem/Zadanierus);
  228.                     break;
  229.                 }
  230.                 break MISSING_BLOCK_LABEL_265;
  231. _L2:
  232.                 if (((String) (obj)).equals("\u0420\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A"))
  233.                 {
  234.                     i = 0;
  235.                 }
  236.                   goto _L4
  237.                 if (((String) (obj)).equals("\u041B\u0438\u0442\u0435\u0440\u0430\u0442\u0443\u0440\u0430"))
  238.                 {
  239.                     i = 1;
  240.                 }
  241.                   goto _L4
  242.                 ((Intent) (obj)).putExtra("textZadanie", adapterview.getText().toString());
  243.                 ((Intent) (obj)).putExtra("linkPredmet", view);
  244.                 ((Intent) (obj)).putExtra("textPredmet", textPredmet);
  245.                 startActivity(((Intent) (obj)));
  246.                 return;
  247.             }
  248.  
  249.            
  250.             {
  251.                 this$0 = Vyborzadan.this;
  252.                 super();
  253.             }
  254.         });
  255.         return;
  256. _L3:
  257.         if (!bundle.equals("Oge")) goto _L1; else goto _L7
  258. _L7:
  259.         byte0 = 0;
  260.           goto _L8
  261. _L2:
  262.         if (!bundle.equals("Ege")) goto _L1; else goto _L9
  263. _L9:
  264.         byte0 = 1;
  265.           goto _L8
  266. _L5:
  267.         bundle = textPredmet;
  268.         bundle.hashCode();
  269.         JVM INSTR lookupswitch 10: default 328
  270.     //                   -1670945313: 396
  271.     //                   -1054138287: 492
  272.     //                   -367606508: 543
  273.     //                   209554663: 412
  274.     //                   248399890: 476
  275.     //                   280741840: 460
  276.     //                   516611964: 428
  277.     //                   1013106368: 509
  278.     //                   1307143265: 526
  279.     //                   1312748651: 444;
  280.            goto _L10 _L11 _L12 _L13 _L14 _L15 _L16 _L17 _L18 _L19 _L20
  281. _L10:
  282.         byte0 = byte1;
  283. _L21:
  284.         switch (byte0)
  285.         {
  286.         case 0: // '\0'
  287.             linkPredmetVz = "http://rus.sdamgia.ru/";
  288.             break;
  289.  
  290.         case 1: // '\001'
  291.             linkPredmetVz = "http://sdamgia.ru/";
  292.             break;
  293.  
  294.         case 2: // '\002'
  295.             linkPredmetVz = "http://soc.sdamgia.ru/";
  296.             break;
  297.  
  298.         case 3: // '\003'
  299.             linkPredmetVz = "http://phys.sdamgia.ru/";
  300.             break;
  301.  
  302.         case 4: // '\004'
  303.             linkPredmetVz = "http://bio.sdamgia.ru/";
  304.             break;
  305.  
  306.         case 5: // '\005'
  307.             linkPredmetVz = "http://hist.sdamgia.ru/";
  308.             break;
  309.  
  310.         case 6: // '\006'
  311.             linkPredmetVz = "http://lit.sdamgia.ru/";
  312.             break;
  313.  
  314.         case 7: // '\007'
  315.             linkPredmetVz = "http://chem.sdamgia.ru/";
  316.             break;
  317.  
  318.         case 8: // '\b'
  319.             linkPredmetVz = "http://inf.sdamgia.ru/";
  320.             break;
  321.  
  322.         case 9: // '\t'
  323.             linkPredmetVz = "http://geo.sdamgia.ru/";
  324.             break;
  325.         }
  326.         continue; /* Loop/switch isn't completed */
  327. _L11:
  328.         byte0 = byte1;
  329.         if (bundle.equals("\u0420\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A"))
  330.         {
  331.             byte0 = 0;
  332.         }
  333.           goto _L21
  334. _L14:
  335.         byte0 = byte1;
  336.         if (bundle.equals("\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0430"))
  337.         {
  338.             byte0 = 1;
  339.         }
  340.           goto _L21
  341. _L17:
  342.         byte0 = byte1;
  343.         if (bundle.equals("\u041E\u0431\u0449\u0435\u0441\u0442\u0432\u043E\u0437\u043D\u0430\u043D\u0438\u0435"))
  344.         {
  345.             byte0 = 2;
  346.         }
  347.           goto _L21
  348. _L20:
  349.         byte0 = byte1;
  350.         if (bundle.equals("\u0424\u0438\u0437\u0438\u043A\u0430"))
  351.         {
  352.             byte0 = 3;
  353.         }
  354.           goto _L21
  355. _L16:
  356.         byte0 = byte1;
  357.         if (bundle.equals("\u0411\u0438\u043E\u043B\u043E\u0433\u0438\u044F"))
  358.         {
  359.             byte0 = 4;
  360.         }
  361.           goto _L21
  362. _L15:
  363.         byte0 = byte1;
  364.         if (bundle.equals("\u0418\u0441\u0442\u043E\u0440\u0438\u044F"))
  365.         {
  366.             byte0 = 5;
  367.         }
  368.           goto _L21
  369. _L12:
  370.         byte0 = byte1;
  371.         if (bundle.equals("\u041B\u0438\u0442\u0435\u0440\u0430\u0442\u0443\u0440\u0430"))
  372.         {
  373.             byte0 = 6;
  374.         }
  375.           goto _L21
  376. _L18:
  377.         byte0 = byte1;
  378.         if (bundle.equals("\u0425\u0438\u043C\u0438\u044F"))
  379.         {
  380.             byte0 = 7;
  381.         }
  382.           goto _L21
  383. _L19:
  384.         byte0 = byte1;
  385.         if (bundle.equals("\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0442\u0438\u043A\u0430"))
  386.         {
  387.             byte0 = 8;
  388.         }
  389.           goto _L21
  390. _L13:
  391.         byte0 = byte1;
  392.         if (bundle.equals("\u0413\u0435\u043E\u0433\u0440\u0430\u0444\u0438\u044F"))
  393.         {
  394.             byte0 = 9;
  395.         }
  396.           goto _L21
  397. _L4:
  398.         if (true) goto _L23; else goto _L22
  399. _L22:
  400. _L6:
  401.         bundle = textPredmet;
  402.         bundle.hashCode();
  403.         JVM INSTR lookupswitch 11: default 748
  404.     //                   -2039102681: 836
  405.     //                   -1670945313: 820
  406.     //                   -1054138287: 933
  407.     //                   -367606508: 984
  408.     //                   248399890: 916
  409.     //                   280741840: 900
  410.     //                   516611964: 868
  411.     //                   842487778: 852
  412.     //                   1013106368: 950
  413.     //                   1307143265: 967
  414.     //                   1312748651: 884;
  415.            goto _L24 _L25 _L26 _L27 _L28 _L29 _L30 _L31 _L32 _L33 _L34 _L35
  416. _L24:
  417.         byte0 = byte1;
  418. _L36:
  419.         switch (byte0)
  420.         {
  421.         case 0: // '\0'
  422.             linkPredmetVz = "http://rus.reshuege.ru/";
  423.             break;
  424.  
  425.         case 1: // '\001'
  426.             linkPredmetVz = "http://mathb.reshuege.ru/";
  427.             break;
  428.  
  429.         case 2: // '\002'
  430.             linkPredmetVz = "http://math.reshuege.ru/";
  431.             break;
  432.  
  433.         case 3: // '\003'
  434.             linkPredmetVz = "http://soc.reshuege.ru/";
  435.             break;
  436.  
  437.         case 4: // '\004'
  438.             linkPredmetVz = "http://phys.reshuege.ru/";
  439.             break;
  440.  
  441.         case 5: // '\005'
  442.             linkPredmetVz = "http://bio.reshuege.ru/";
  443.             break;
  444.  
  445.         case 6: // '\006'
  446.             linkPredmetVz = "http://hist.reshuege.ru/";
  447.             break;
  448.  
  449.         case 7: // '\007'
  450.             linkPredmetVz = "http://lit.reshuege.ru/";
  451.             break;
  452.  
  453.         case 8: // '\b'
  454.             linkPredmetVz = "http://chem.reshuege.ru/";
  455.             break;
  456.  
  457.         case 9: // '\t'
  458.             linkPredmetVz = "http://inf.reshuege.ru/";
  459.             break;
  460.  
  461.         case 10: // '\n'
  462.             linkPredmetVz = "http://geo.reshuege.ru/";
  463.             break;
  464.         }
  465.         continue; /* Loop/switch isn't completed */
  466. _L26:
  467.         byte0 = byte1;
  468.         if (bundle.equals("\u0420\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A"))
  469.         {
  470.             byte0 = 0;
  471.         }
  472.           goto _L36
  473. _L25:
  474.         byte0 = byte1;
  475.         if (bundle.equals("\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0430-\u0431\u0430\u0437\u043E\u0432\u044B\u0439 \u0443\u0440\u043E\u0432\u0435\u043D\u044C"))
  476.         {
  477.             byte0 = 1;
  478.         }
  479.           goto _L36
  480. _L32:
  481.         byte0 = byte1;
  482.         if (bundle.equals("\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0430-\u043F\u0440\u043E\u0444\u0438\u043B\u044C\u043D\u044B\u0439 \u0443\u0440\u043E\u0432\u0435\u043D\u044C"))
  483.         {
  484.             byte0 = 2;
  485.         }
  486.           goto _L36
  487. _L31:
  488.         byte0 = byte1;
  489.         if (bundle.equals("\u041E\u0431\u0449\u0435\u0441\u0442\u0432\u043E\u0437\u043D\u0430\u043D\u0438\u0435"))
  490.         {
  491.             byte0 = 3;
  492.         }
  493.           goto _L36
  494. _L35:
  495.         byte0 = byte1;
  496.         if (bundle.equals("\u0424\u0438\u0437\u0438\u043A\u0430"))
  497.         {
  498.             byte0 = 4;
  499.         }
  500.           goto _L36
  501. _L30:
  502.         byte0 = byte1;
  503.         if (bundle.equals("\u0411\u0438\u043E\u043B\u043E\u0433\u0438\u044F"))
  504.         {
  505.             byte0 = 5;
  506.         }
  507.           goto _L36
  508. _L29:
  509.         byte0 = byte1;
  510.         if (bundle.equals("\u0418\u0441\u0442\u043E\u0440\u0438\u044F"))
  511.         {
  512.             byte0 = 6;
  513.         }
  514.           goto _L36
  515. _L27:
  516.         byte0 = byte1;
  517.         if (bundle.equals("\u041B\u0438\u0442\u0435\u0440\u0430\u0442\u0443\u0440\u0430"))
  518.         {
  519.             byte0 = 7;
  520.         }
  521.           goto _L36
  522. _L33:
  523.         byte0 = byte1;
  524.         if (bundle.equals("\u0425\u0438\u043C\u0438\u044F"))
  525.         {
  526.             byte0 = 8;
  527.         }
  528.           goto _L36
  529. _L34:
  530.         byte0 = byte1;
  531.         if (bundle.equals("\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0442\u0438\u043A\u0430"))
  532.         {
  533.             byte0 = 9;
  534.         }
  535.           goto _L36
  536. _L28:
  537.         byte0 = byte1;
  538.         if (bundle.equals("\u0413\u0435\u043E\u0433\u0440\u0430\u0444\u0438\u044F"))
  539.         {
  540.             byte0 = 10;
  541.         }
  542.           goto _L36
  543.         if (true) goto _L23; else goto _L37
  544. _L37:
  545.           goto _L8
  546.     }
  547.  
  548.     public void vyborPred()
  549.     {
  550.         if (textPredmet.equals("\u0420\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A") && ekzamen.equals("Oge"))
  551.         {
  552.             String as[] = new String[78];
  553.             for (int i = 0; i < 9; i++)
  554.             {
  555.                 as[i] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B1. \u041F\u043E\u043D\u0438\u043C\u0430\u043D\u0438\u0435 \u0441\u043C\u044B\u0441\u043B\u0430 \u0442\u0435\u043A\u0441\u0442\u0430";
  556.             }
  557.  
  558.             for (int j = 9; j < 11; j++)
  559.             {
  560.                 as[j] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B2. \u0410\u043D\u0430\u043B\u0438\u0437 \u0441\u0440\u0435\u0434\u0441\u0442\u0432 \u0432\u044B\u0440\u0430\u0437\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u0438";
  561.             }
  562.  
  563.             for (int k = 11; k < 17; k++)
  564.             {
  565.                 as[k] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B3. \u041F\u0440\u0430\u0432\u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 \u043F\u0440\u0438\u0441\u0442\u0430\u0432\u043E\u043A";
  566.             }
  567.  
  568.             for (int l = 17; l < 21; l++)
  569.             {
  570.                 as[l] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B4. \u041F\u0440\u0430\u0432\u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 \u0441\u0443\u0444\u0444\u0438\u043A\u0441\u043E\u0432 \u0440\u0430\u0437\u043B\u0438\u0447\u043D\u044B\u0445 \u0447\u0430\u0441\u0442\u0435\u0439 \u0440\u0435\u0447\u0438";
  571.             }
  572.  
  573.             for (int i1 = 21; i1 < 25; i1++)
  574.             {
  575.                 as[i1] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B5. \u0421\u0438\u043D\u043E\u043D\u0438\u043C\u044B. \u0424\u0440\u0430\u0437\u0435\u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0435 \u043E\u0431\u043E\u0440\u043E\u0442\u044B";
  576.             }
  577.  
  578.             for (int j1 = 25; j1 < 29; j1++)
  579.             {
  580.                 as[j1] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B6. \u0421\u043B\u043E\u0432\u043E\u0441\u043E\u0447\u0435\u0442\u0430\u043D\u0438\u0435";
  581.             }
  582.  
  583.             for (int k1 = 29; k1 < 33; k1++)
  584.             {
  585.                 as[k1] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B7. \u0413\u0440\u0430\u043C\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F (\u043F\u0440\u0435\u0434\u0438\u043A\u0430\u0442\u0438\u0432\u043D\u0430\u044F) \u043E\u0441\u043D\u043E\u0432\u0430 \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u044F";
  586.             }
  587.  
  588.             for (int l1 = 33; l1 < 39; l1++)
  589.             {
  590.                 as[l1] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B8. \u041E\u0441\u043B\u043E\u0436\u043D\u0451\u043D\u043D\u043E\u0435 \u043F\u0440\u043E\u0441\u0442\u043E\u0435 \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u0435";
  591.             }
  592.  
  593.             for (int i2 = 39; i2 < 43; i2++)
  594.             {
  595.                 as[i2] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B9. \u0417\u043D\u0430\u043A\u0438 \u043F\u0440\u0435\u043F\u0438\u043D\u0430\u043D\u0438\u044F \u043F\u0440\u0438 \u0432\u0432\u043E\u0434\u043D\u044B\u0445 \u0441\u043B\u043E\u0432\u0430\u0445, \u0441\u043B\u043E\u0432\u043E\u0441\u043E\u0447\u0435\u0442\u0430\u043D\u0438\u044F\u0445 \u0438 \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u044F\u0445";
  596.             }
  597.  
  598.             for (int j2 = 43; j2 < 47; j2++)
  599.             {
  600.                 as[j2] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B10. \u0421\u0438\u043D\u0442\u0430\u043A\u0441\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u043D\u0430\u043B\u0438\u0437 \u0441\u043B\u043E\u0436\u043D\u043E\u0433\u043E \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u044F";
  601.             }
  602.  
  603.             for (int k2 = 47; k2 < 53; k2++)
  604.             {
  605.                 as[k2] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B11. \u0417\u043D\u0430\u043A\u0438 \u043F\u0440\u0435\u043F\u0438\u043D\u0430\u043D\u0438\u044F \u0432 \u0441\u043B\u043E\u0436\u043D\u043E\u0441\u043E\u0447\u0438\u043D\u0451\u043D\u043D\u043E\u043C \u0438 \u0432 \u0441\u043B\u043E\u0436\u043D\u043E\u043F\u043E\u0434\u0447\u0438\u043D\u0451\u043D\u043D\u043E\u043C \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u044F\u0445";
  606.             }
  607.  
  608.             for (int l2 = 53; l2 < 59; l2++)
  609.             {
  610.                 as[l2] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B12. \u0421\u0438\u043D\u0442\u0430\u043A\u0441\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u043D\u0430\u043B\u0438\u0437 \u0441\u043B\u043E\u0436\u043D\u043E\u0433\u043E \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u044F";
  611.             }
  612.  
  613.             for (int i3 = 59; i3 < 63; i3++)
  614.             {
  615.                 as[i3] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F B13. \u0421\u043B\u043E\u0436\u043D\u044B\u0435 \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u0441 \u0440\u0430\u0437\u043D\u044B\u043C\u0438 \u0432\u0438\u0434\u0430\u043C\u0438 \u0441\u0432\u044F\u0437\u0438 \u043C\u0435\u0436\u0434\u0443 \u0447\u0430\u0441\u0442\u044F\u043C\u0438";
  616.             }
  617.  
  618.             for (int j3 = 63; j3 < 65; j3++)
  619.             {
  620.                 as[j3] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F C1. \u0418\u0437\u043B\u043E\u0436\u0435\u043D\u0438\u0435";
  621.             }
  622.  
  623.             for (int k3 = 65; k3 < 67; k3++)
  624.             {
  625.                 as[k3] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F C2. \u0421\u043E\u0447\u0438\u043D\u0435\u043D\u0438\u0435";
  626.             }
  627.  
  628.             for (int l3 = 67; l3 < 71; l3++)
  629.             {
  630.                 as[l3] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F \u0414 A2. \u041B\u0435\u043A\u0441\u0438\u0447\u0435\u0441\u043A\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0441\u043B\u043E\u0432\u0430";
  631.             }
  632.  
  633.             for (int i4 = 71; i4 < 74; i4++)
  634.             {
  635.                 as[i4] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F \u0414 A4. \u0424\u043E\u043D\u0435\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0430\u043D\u0430\u043B\u0438\u0437 \u0441\u043B\u043E\u0432\u0430";
  636.             }
  637.  
  638.             for (int j4 = 74; j4 < 78; j4++)
  639.             {
  640.                 as[j4] = "\u0417\u0430\u0434\u0430\u043D\u0438\u044F \u0414 A5. \u041F\u0440\u0430\u0432\u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 \u043A\u043E\u0440\u043D\u0435\u0439. \u041F\u0440\u0430\u0432\u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 \u0441\u043B\u043E\u0432\u0430\u0440\u043D\u044B\u0445 \u0441\u043B\u043E\u0432";
  641.             }
  642.  
  643.             for (int k4 = 0; k4 < 78; k4++)
  644.             {
  645.                 namesVz2.add(as[k4]);
  646.             }
  647.  
  648.             LvZadanie.setAdapter(adapterVz);
  649.             return;
  650.         } else
  651.         {
  652.             nmnVz2 = new ParserUrl2();
  653.             nmnVz2.execute(new ArrayList[] {
  654.                 namesVz
  655.             });
  656.             return;
  657.         }
  658.     }
  659.  
  660.  
  661. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement