package com.pas.abtahibo.parvaz;


import anywheresoftware.b4a.B4AMenuItem;
import android.app.Activity;
import android.os.Bundle;
import anywheresoftware.b4a.BA;
import anywheresoftware.b4a.BALayout;
import anywheresoftware.b4a.B4AActivity;
import anywheresoftware.b4a.ObjectWrapper;
import anywheresoftware.b4a.objects.ActivityWrapper;
import java.lang.reflect.InvocationTargetException;
import anywheresoftware.b4a.B4AUncaughtException;
import anywheresoftware.b4a.debug.*;
import java.lang.ref.WeakReference;

public class actguide extends Activity implements B4AActivity{
	public static actguide mostCurrent;
	static boolean afterFirstLayout;
	static boolean isFirst = true;
    private static boolean processGlobalsRun = false;
	BALayout layout;
	public static BA processBA;
	BA activityBA;
    ActivityWrapper _activity;
    java.util.ArrayList<B4AMenuItem> menuItems;
	public static final boolean fullScreen = false;
	public static final boolean includeTitle = false;
    public static WeakReference<Activity> previousOne;
    public static boolean dontPause;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
        mostCurrent = this;
		if (processBA == null) {
			processBA = new BA(this.getApplicationContext(), null, null, "com.pas.abtahibo.parvaz", "com.pas.abtahibo.parvaz.actguide");
			processBA.loadHtSubs(this.getClass());
	        float deviceScale = getApplicationContext().getResources().getDisplayMetrics().density;
	        BALayout.setDeviceScale(deviceScale);
            
		}
		else if (previousOne != null) {
			Activity p = previousOne.get();
			if (p != null && p != this) {
                BA.LogInfo("Killing previous instance (actguide).");
				p.finish();
			}
		}
        processBA.setActivityPaused(true);
        processBA.runHook("oncreate", this, null);
		if (!includeTitle) {
        	this.getWindow().requestFeature(android.view.Window.FEATURE_NO_TITLE);
        }
        if (fullScreen) {
        	getWindow().setFlags(android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN,   
        			android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN);
        }
		
        processBA.sharedProcessBA.activityBA = null;
		layout = new BALayout(this);
		setContentView(layout);
		afterFirstLayout = false;
        WaitForLayout wl = new WaitForLayout();
        if (anywheresoftware.b4a.objects.ServiceHelper.StarterHelper.startFromActivity(this, processBA, wl, false))
		    BA.handler.postDelayed(wl, 5);

	}
	static class WaitForLayout implements Runnable {
		public void run() {
			if (afterFirstLayout)
				return;
			if (mostCurrent == null)
				return;
            
			if (mostCurrent.layout.getWidth() == 0) {
				BA.handler.postDelayed(this, 5);
				return;
			}
			mostCurrent.layout.getLayoutParams().height = mostCurrent.layout.getHeight();
			mostCurrent.layout.getLayoutParams().width = mostCurrent.layout.getWidth();
			afterFirstLayout = true;
			mostCurrent.afterFirstLayout();
		}
	}
	private void afterFirstLayout() {
        if (this != mostCurrent)
			return;
		activityBA = new BA(this, layout, processBA, "com.pas.abtahibo.parvaz", "com.pas.abtahibo.parvaz.actguide");
        
        processBA.sharedProcessBA.activityBA = new java.lang.ref.WeakReference<BA>(activityBA);
        anywheresoftware.b4a.objects.ViewWrapper.lastId = 0;
        _activity = new ActivityWrapper(activityBA, "activity");
        anywheresoftware.b4a.Msgbox.isDismissing = false;
        if (BA.isShellModeRuntimeCheck(processBA)) {
			if (isFirst)
				processBA.raiseEvent2(null, true, "SHELL", false);
			processBA.raiseEvent2(null, true, "CREATE", true, "com.pas.abtahibo.parvaz.actguide", processBA, activityBA, _activity, anywheresoftware.b4a.keywords.Common.Density, mostCurrent);
			_activity.reinitializeForShell(activityBA, "activity");
		}
        initializeProcessGlobals();		
        initializeGlobals();
        
        BA.LogInfo("** Activity (actguide) Create " + (isFirst ? "(first time)" : "") + " **");
        processBA.raiseEvent2(null, true, "activity_create", false, isFirst);
		isFirst = false;
		if (this != mostCurrent)
			return;
        processBA.setActivityPaused(false);
        BA.LogInfo("** Activity (actguide) Resume **");
        processBA.raiseEvent(null, "activity_resume");
        if (android.os.Build.VERSION.SDK_INT >= 11) {
			try {
				android.app.Activity.class.getMethod("invalidateOptionsMenu").invoke(this,(Object[]) null);
			} catch (Exception e) {
				e.printStackTrace();
			}
		}

	}
	public void addMenuItem(B4AMenuItem item) {
		if (menuItems == null)
			menuItems = new java.util.ArrayList<B4AMenuItem>();
		menuItems.add(item);
	}
	@Override
	public boolean onCreateOptionsMenu(android.view.Menu menu) {
		super.onCreateOptionsMenu(menu);
        try {
            if (processBA.subExists("activity_actionbarhomeclick")) {
                Class.forName("android.app.ActionBar").getMethod("setHomeButtonEnabled", boolean.class).invoke(
                    getClass().getMethod("getActionBar").invoke(this), true);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (processBA.runHook("oncreateoptionsmenu", this, new Object[] {menu}))
            return true;
		if (menuItems == null)
			return false;
		for (B4AMenuItem bmi : menuItems) {
			android.view.MenuItem mi = menu.add(bmi.title);
			if (bmi.drawable != null)
				mi.setIcon(bmi.drawable);
            if (android.os.Build.VERSION.SDK_INT >= 11) {
				try {
                    if (bmi.addToBar) {
				        android.view.MenuItem.class.getMethod("setShowAsAction", int.class).invoke(mi, 1);
                    }
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
			mi.setOnMenuItemClickListener(new B4AMenuItemsClickListener(bmi.eventName.toLowerCase(BA.cul)));
		}
        
		return true;
	}   
 @Override
 public boolean onOptionsItemSelected(android.view.MenuItem item) {
    if (item.getItemId() == 16908332) {
        processBA.raiseEvent(null, "activity_actionbarhomeclick");
        return true;
    }
    else
        return super.onOptionsItemSelected(item); 
}
@Override
 public boolean onPrepareOptionsMenu(android.view.Menu menu) {
    super.onPrepareOptionsMenu(menu);
    processBA.runHook("onprepareoptionsmenu", this, new Object[] {menu});
    return true;
    
 }
 protected void onStart() {
    super.onStart();
    processBA.runHook("onstart", this, null);
}
 protected void onStop() {
    super.onStop();
    processBA.runHook("onstop", this, null);
}
    public void onWindowFocusChanged(boolean hasFocus) {
       super.onWindowFocusChanged(hasFocus);
       if (processBA.subExists("activity_windowfocuschanged"))
           processBA.raiseEvent2(null, true, "activity_windowfocuschanged", false, hasFocus);
    }
	private class B4AMenuItemsClickListener implements android.view.MenuItem.OnMenuItemClickListener {
		private final String eventName;
		public B4AMenuItemsClickListener(String eventName) {
			this.eventName = eventName;
		}
		public boolean onMenuItemClick(android.view.MenuItem item) {
			processBA.raiseEventFromUI(item.getTitle(), eventName + "_click");
			return true;
		}
	}
    public static Class<?> getObject() {
		return actguide.class;
	}
    private Boolean onKeySubExist = null;
    private Boolean onKeyUpSubExist = null;
	@Override
	public boolean onKeyDown(int keyCode, android.view.KeyEvent event) {
        if (processBA.runHook("onkeydown", this, new Object[] {keyCode, event}))
            return true;
		if (onKeySubExist == null)
			onKeySubExist = processBA.subExists("activity_keypress");
		if (onKeySubExist) {
			if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK &&
					android.os.Build.VERSION.SDK_INT >= 18) {
				HandleKeyDelayed hk = new HandleKeyDelayed();
				hk.kc = keyCode;
				BA.handler.post(hk);
				return true;
			}
			else {
				boolean res = new HandleKeyDelayed().runDirectly(keyCode);
				if (res)
					return true;
			}
		}
		return super.onKeyDown(keyCode, event);
	}
	private class HandleKeyDelayed implements Runnable {
		int kc;
		public void run() {
			runDirectly(kc);
		}
		public boolean runDirectly(int keyCode) {
			Boolean res =  (Boolean)processBA.raiseEvent2(_activity, false, "activity_keypress", false, keyCode);
			if (res == null || res == true) {
                return true;
            }
            else if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK) {
				finish();
				return true;
			}
            return false;
		}
		
	}
    @Override
	public boolean onKeyUp(int keyCode, android.view.KeyEvent event) {
        if (processBA.runHook("onkeyup", this, new Object[] {keyCode, event}))
            return true;
		if (onKeyUpSubExist == null)
			onKeyUpSubExist = processBA.subExists("activity_keyup");
		if (onKeyUpSubExist) {
			Boolean res =  (Boolean)processBA.raiseEvent2(_activity, false, "activity_keyup", false, keyCode);
			if (res == null || res == true)
				return true;
		}
		return super.onKeyUp(keyCode, event);
	}
	@Override
	public void onNewIntent(android.content.Intent intent) {
        super.onNewIntent(intent);
		this.setIntent(intent);
        processBA.runHook("onnewintent", this, new Object[] {intent});
	}
    @Override 
	public void onPause() {
		super.onPause();
        if (_activity == null)
            return;
        if (this != mostCurrent)
			return;
		anywheresoftware.b4a.Msgbox.dismiss(true);
        if (!dontPause)
            BA.LogInfo("** Activity (actguide) Pause, UserClosed = " + activityBA.activity.isFinishing() + " **");
        else
            BA.LogInfo("** Activity (actguide) Pause event (activity is not paused). **");
        if (mostCurrent != null)
            processBA.raiseEvent2(_activity, true, "activity_pause", false, activityBA.activity.isFinishing());		
        if (!dontPause) {
            processBA.setActivityPaused(true);
            mostCurrent = null;
        }

        if (!activityBA.activity.isFinishing())
			previousOne = new WeakReference<Activity>(this);
        anywheresoftware.b4a.Msgbox.isDismissing = false;
        processBA.runHook("onpause", this, null);
	}

	@Override
	public void onDestroy() {
        super.onDestroy();
		previousOne = null;
        processBA.runHook("ondestroy", this, null);
	}
    @Override 
	public void onResume() {
		super.onResume();
        mostCurrent = this;
        anywheresoftware.b4a.Msgbox.isDismissing = false;
        if (activityBA != null) { //will be null during activity create (which waits for AfterLayout).
        	ResumeMessage rm = new ResumeMessage(mostCurrent);
        	BA.handler.post(rm);
        }
        processBA.runHook("onresume", this, null);
	}
    private static class ResumeMessage implements Runnable {
    	private final WeakReference<Activity> activity;
    	public ResumeMessage(Activity activity) {
    		this.activity = new WeakReference<Activity>(activity);
    	}
		public void run() {
            actguide mc = mostCurrent;
			if (mc == null || mc != activity.get())
				return;
			processBA.setActivityPaused(false);
            BA.LogInfo("** Activity (actguide) Resume **");
            if (mc != mostCurrent)
                return;
		    processBA.raiseEvent(mc._activity, "activity_resume", (Object[])null);
		}
    }
	@Override
	protected void onActivityResult(int requestCode, int resultCode,
	      android.content.Intent data) {
		processBA.onActivityResult(requestCode, resultCode, data);
        processBA.runHook("onactivityresult", this, new Object[] {requestCode, resultCode});
	}
	private static void initializeGlobals() {
		processBA.raiseEvent2(null, true, "globals", false, (Object[])null);
	}
    public void onRequestPermissionsResult(int requestCode,
        String permissions[], int[] grantResults) {
        for (int i = 0;i < permissions.length;i++) {
            Object[] o = new Object[] {permissions[i], grantResults[i] == 0};
            processBA.raiseEventFromDifferentThread(null,null, 0, "activity_permissionresult", true, o);
        }
            
    }

public anywheresoftware.b4a.keywords.Common __c = null;
public com.aghajari.rv.Amir_RecyclerView _recneshan = null;
public anywheresoftware.b4a.objects.LabelWrapper _lab_back = null;
public anywheresoftware.b4a.objects.LabelWrapper _label1 = null;
public aghajari.retrofit.Retrofit _vvvvvvvvvvvvvv4 = null;
public aghajari.retrofit.Amir_RetrofitManager _manager_add = null;
public aghajari.retrofit.Builder _builder_add = null;
public anywheresoftware.b4a.objects.collections.List _list_type = null;
public anywheresoftware.b4a.objects.collections.List _list_film = null;
public anywheresoftware.b4a.objects.collections.List _list_date = null;
public anywheresoftware.b4a.objects.collections.List _list_title = null;
public anywheresoftware.b4a.objects.collections.List _list_matn = null;
public anywheresoftware.b4a.objects.collections.List _list_pic = null;
public com.persianglide.core.PersianGlide _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = null;
public anywheresoftware.b4a.objects.WebViewWrapper _vvvvvvvvvvvvvvvvvvv2 = null;
public anywheresoftware.b4a.objects.PanelWrapper _vvvvvvvvvvvvvvvvvvv1 = null;
public b4a.example.dateutils _vvvvvvvvvvvvvvvv1 = null;
public com.pas.abtahibo.parvaz.main _vvvvvvvvvvvvvvvv2 = null;
public com.pas.abtahibo.parvaz.actbook _vvvvvvvvvvvvvvvv3 = null;
public com.pas.abtahibo.parvaz.actapps _vvvvvvvvvvvvvvvv4 = null;
public com.pas.abtahibo.parvaz.actnotific _vvvvvvvvvvvvvvvv6 = null;
public com.pas.abtahibo.parvaz.func _vvvvvvvvvvvvvvvv7 = null;
public com.pas.abtahibo.parvaz.myservice _vvvvvvvvvvvvvvvv0 = null;
public com.pas.abtahibo.parvaz.playservicebook _vvvvvvvvvvvvvvvvv1 = null;
public com.pas.abtahibo.parvaz.playsrds _vvvvvvvvvvvvvvvvv2 = null;
public com.pas.abtahibo.parvaz.starter _vvvvvvvvvvvvvvvvv3 = null;
public com.pas.abtahibo.parvaz.support _vvvvvvvvvvvvvvvvv4 = null;
public com.pas.abtahibo.parvaz.urls _vvvvvvvvvvvvvvvvv5 = null;
public com.pas.abtahibo.parvaz.xuiviewsutils _vvvvvvvvvvvvvvvvv6 = null;

public static void initializeProcessGlobals() {
             try {
                Class.forName(BA.applicationContext.getPackageName() + ".main").getMethod("initializeProcessGlobals").invoke(null, null);
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
}
public static String  _activity_create(boolean _firsttime) throws Exception{
 //BA.debugLineNum = 37;BA.debugLine="Sub Activity_Create(FirstTime As Boolean)";
 //BA.debugLineNum = 39;BA.debugLine="Activity.LoadLayout(\"neshanlayout\")";
mostCurrent._activity.LoadLayout("neshanlayout",mostCurrent.activityBA);
 //BA.debugLineNum = 40;BA.debugLine="func.SetRipple(lab_back ,0x337FD3B1,0x884C9A7B,16";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv3 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._lab_back.getObject())),((int)0x337fd3b1),((int)0x884c9a7b),(float) (16));
 //BA.debugLineNum = 41;BA.debugLine="Label1.Text = func.gland(105)";
mostCurrent._label1.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (105))));
 //BA.debugLineNum = 43;BA.debugLine="Label1.Typeface = Typeface.CreateNew(Typeface.Loa";
mostCurrent._label1.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.CreateNew(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.Typeface.STYLE_BOLD));
 //BA.debugLineNum = 44;BA.debugLine="func.MinimomFontLabel(Label1,14)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,mostCurrent._label1,(int) (14));
 //BA.debugLineNum = 46;BA.debugLine="recNeshan.Adapter = recNeshan.DefaultAdapter";
mostCurrent._recneshan.setAdapter((androidx.recyclerview.widget.RecyclerView.Adapter)(mostCurrent._recneshan.DefaultAdapter().getObject()));
 //BA.debugLineNum = 48;BA.debugLine="panZoom.Initialize(\"panZoom\")";
mostCurrent._vvvvvvvvvvvvvvvvvvv1.Initialize(mostCurrent.activityBA,"panZoom");
 //BA.debugLineNum = 49;BA.debugLine="Activity.AddView(panZoom,0%x,0%y,100%x,100%y)";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvv1.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (0),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (0),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (100),mostCurrent.activityBA));
 //BA.debugLineNum = 50;BA.debugLine="func.color_border(panZoom,0xDD7B7A7A,10dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvv1.getObject())),((int)0xdd7b7a7a),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 //BA.debugLineNum = 51;BA.debugLine="panZoom.Visible = False";
mostCurrent._vvvvvvvvvvvvvvvvvvv1.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 53;BA.debugLine="WKWebView2.Initialize(\"WKWebView2\")";
mostCurrent._vvvvvvvvvvvvvvvvvvv2.Initialize(mostCurrent.activityBA,"WKWebView2");
 //BA.debugLineNum = 54;BA.debugLine="panZoom.AddView(WKWebView2,3%x,10%y,94%x,80%y)";
mostCurrent._vvvvvvvvvvvvvvvvvvv1.AddView((android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvv2.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (3),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (10),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (94),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (80),mostCurrent.activityBA));
 //BA.debugLineNum = 56;BA.debugLine="list_type.Initialize";
mostCurrent._list_type.Initialize();
 //BA.debugLineNum = 57;BA.debugLine="list_film.Initialize";
mostCurrent._list_film.Initialize();
 //BA.debugLineNum = 58;BA.debugLine="list_date.Initialize";
mostCurrent._list_date.Initialize();
 //BA.debugLineNum = 59;BA.debugLine="list_title.Initialize";
mostCurrent._list_title.Initialize();
 //BA.debugLineNum = 60;BA.debugLine="list_matn.Initialize";
mostCurrent._list_matn.Initialize();
 //BA.debugLineNum = 61;BA.debugLine="list_pic.Initialize";
mostCurrent._list_pic.Initialize();
 //BA.debugLineNum = 63;BA.debugLine="Builder_add.Initialize";
mostCurrent._builder_add.Initialize(processBA);
 //BA.debugLineNum = 64;BA.debugLine="Builder_add.baseUrl(urls.baseUrl).WithManager";
mostCurrent._builder_add.baseUrl(mostCurrent._vvvvvvvvvvvvvvvvv5._vvvvvvvvv5 /*String*/ (mostCurrent.activityBA)).WithManager();
 //BA.debugLineNum = 65;BA.debugLine="Builder_add.addGsonConverterFactory";
mostCurrent._builder_add.addGsonConverterFactory();
 //BA.debugLineNum = 66;BA.debugLine="Builder_add.addHeader(CreateMap(\"Content-Type\":\"a";
mostCurrent._builder_add.addHeader((java.util.Map)(anywheresoftware.b4a.keywords.Common.createMap(new Object[] {(Object)("Content-Type"),(Object)("application/json")}).getObject()));
 //BA.debugLineNum = 67;BA.debugLine="Retrofit.Initialize(Builder_add)";
mostCurrent._vvvvvvvvvvvvvv4.Initialize(processBA,mostCurrent._builder_add);
 //BA.debugLineNum = 68;BA.debugLine="Manager_add = Retrofit.Utils.GetRetrofitManager(R";
mostCurrent._manager_add = mostCurrent._vvvvvvvvvvvvvv4.getUtils().GetRetrofitManager(mostCurrent._vvvvvvvvvvvvvv4);
 //BA.debugLineNum = 70;BA.debugLine="tsetUpdate";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1();
 //BA.debugLineNum = 72;BA.debugLine="End Sub";
return "";
}
public static boolean  _activity_keypress(int _keycode) throws Exception{
 //BA.debugLineNum = 356;BA.debugLine="Sub Activity_KeyPress (KeyCode As Int) As Boolean";
 //BA.debugLineNum = 358;BA.debugLine="If KeyCode = KeyCodes.KEYCODE_BACK Then";
if (_keycode==anywheresoftware.b4a.keywords.Common.KeyCodes.KEYCODE_BACK) { 
 //BA.debugLineNum = 359;BA.debugLine="close";
_vvvvvvvvvvvv1();
 };
 //BA.debugLineNum = 362;BA.debugLine="Return True";
if (true) return anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 364;BA.debugLine="End Sub";
return false;
}
public static String  _activity_pause(boolean _userclosed) throws Exception{
 //BA.debugLineNum = 337;BA.debugLine="Sub Activity_Pause (UserClosed As Boolean)";
 //BA.debugLineNum = 339;BA.debugLine="End Sub";
return "";
}
public static String  _activity_resume() throws Exception{
 //BA.debugLineNum = 333;BA.debugLine="Sub Activity_Resume";
 //BA.debugLineNum = 335;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvv1() throws Exception{
 //BA.debugLineNum = 346;BA.debugLine="Sub close";
 //BA.debugLineNum = 347;BA.debugLine="If panZoom.Visible Then";
if (mostCurrent._vvvvvvvvvvvvvvvvvvv1.getVisible()) { 
 //BA.debugLineNum = 348;BA.debugLine="panZoom.Visible = False";
mostCurrent._vvvvvvvvvvvvvvvvvvv1.setVisible(anywheresoftware.b4a.keywords.Common.False);
 }else {
 //BA.debugLineNum = 350;BA.debugLine="Manager_add.CancelAll";
mostCurrent._manager_add.CancelAll(processBA);
 //BA.debugLineNum = 351;BA.debugLine="Activity.Finish";
mostCurrent._activity.Finish();
 };
 //BA.debugLineNum = 353;BA.debugLine="End Sub";
return "";
}
public static String  _globals() throws Exception{
 //BA.debugLineNum = 11;BA.debugLine="Sub Globals";
 //BA.debugLineNum = 13;BA.debugLine="Private recNeshan As AX_RecyclerView";
mostCurrent._recneshan = new com.aghajari.rv.Amir_RecyclerView();
 //BA.debugLineNum = 15;BA.debugLine="Dim lab_back As Label";
mostCurrent._lab_back = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 16;BA.debugLine="Dim Label1 As Label";
mostCurrent._label1 = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 18;BA.debugLine="Dim Retrofit As Amir_Retrofit";
mostCurrent._vvvvvvvvvvvvvv4 = new aghajari.retrofit.Retrofit();
 //BA.debugLineNum = 19;BA.debugLine="Dim Manager_add   As Amir_RetrofitManager";
mostCurrent._manager_add = new aghajari.retrofit.Amir_RetrofitManager();
 //BA.debugLineNum = 20;BA.debugLine="Dim Builder_add   As Amir_RetrofitBuilder";
mostCurrent._builder_add = new aghajari.retrofit.Builder();
 //BA.debugLineNum = 23;BA.debugLine="Dim list_type  As List";
mostCurrent._list_type = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 24;BA.debugLine="Dim list_film  As List";
mostCurrent._list_film = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 25;BA.debugLine="Dim list_date  As List";
mostCurrent._list_date = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 26;BA.debugLine="Dim list_title As List";
mostCurrent._list_title = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 27;BA.debugLine="Dim list_matn  As List";
mostCurrent._list_matn = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 28;BA.debugLine="Dim list_pic  As List";
mostCurrent._list_pic = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 30;BA.debugLine="Dim glide As PersianGlide";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = new com.persianglide.core.PersianGlide();
 //BA.debugLineNum = 32;BA.debugLine="Dim WKWebView2 As WebView";
mostCurrent._vvvvvvvvvvvvvvvvvvv2 = new anywheresoftware.b4a.objects.WebViewWrapper();
 //BA.debugLineNum = 33;BA.debugLine="Dim panZoom As Panel";
mostCurrent._vvvvvvvvvvvvvvvvvvv1 = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 35;BA.debugLine="End Sub";
return "";
}
public static String  _lab_back_click() throws Exception{
 //BA.debugLineNum = 342;BA.debugLine="Sub lab_back_Click";
 //BA.debugLineNum = 343;BA.debugLine="close";
_vvvvvvvvvvvv1();
 //BA.debugLineNum = 344;BA.debugLine="End Sub";
return "";
}
public static String  _pan_click() throws Exception{
anywheresoftware.b4a.objects.PanelWrapper _pan = null;
int _position = 0;
String _dfg = "";
 //BA.debugLineNum = 303;BA.debugLine="Sub pan_Click";
 //BA.debugLineNum = 305;BA.debugLine="Dim pan As Panel = Sender";
_pan = new anywheresoftware.b4a.objects.PanelWrapper();
_pan = (anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(anywheresoftware.b4a.keywords.Common.Sender(mostCurrent.activityBA)));
 //BA.debugLineNum = 307;BA.debugLine="Dim Position As Int = pan.Tag";
_position = (int)(BA.ObjectToNumber(_pan.getTag()));
 //BA.debugLineNum = 309;BA.debugLine="Dim dfg As String = list_pic.Get(Position)";
_dfg = BA.ObjectToString(mostCurrent._list_pic.Get(_position));
 //BA.debugLineNum = 311;BA.debugLine="If 1 = list_type.Get(Position) Then";
if (1==(double)(BA.ObjectToNumber(mostCurrent._list_type.Get(_position)))) { 
 //BA.debugLineNum = 312;BA.debugLine="If dfg.Length = 0 Or dfg=Null Or dfg.ToLowerCase";
if (_dfg.length()==0 || _dfg== null || (_dfg.toLowerCase(anywheresoftware.b4a.keywords.Common.stringLocale)).equals("null")) { 
 }else {
 //BA.debugLineNum = 314;BA.debugLine="func.LoadHtmlZoom3(dfg ,WKWebView2)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv2 /*String*/ (mostCurrent.activityBA,_dfg,mostCurrent._vvvvvvvvvvvvvvvvvvv2);
 //BA.debugLineNum = 315;BA.debugLine="panZoom.Visible = True";
mostCurrent._vvvvvvvvvvvvvvvvvvv1.setVisible(anywheresoftware.b4a.keywords.Common.True);
 };
 }else {
 //BA.debugLineNum = 319;BA.debugLine="func.savePFM(\"name_zirFilm\",list_title.Get(Posit";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvv2 /*String*/ (mostCurrent.activityBA,"name_zirFilm",BA.ObjectToString(mostCurrent._list_title.Get(_position)));
 //BA.debugLineNum = 320;BA.debugLine="func.savePFM(\"list_film\",list_film.Get(Position)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvv2 /*String*/ (mostCurrent.activityBA,"list_film",BA.ObjectToString(mostCurrent._list_film.Get(_position)));
 //BA.debugLineNum = 322;BA.debugLine="func.savePFM(\"typePlats\",2)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvv2 /*String*/ (mostCurrent.activityBA,"typePlats",BA.NumberToString(2));
 //BA.debugLineNum = 323;BA.debugLine="StartActivity(playsrds)";
anywheresoftware.b4a.keywords.Common.StartActivity(processBA,(Object)(mostCurrent._vvvvvvvvvvvvvvvvv2.getObject()));
 };
 //BA.debugLineNum = 327;BA.debugLine="End Sub";
return "";
}
public static String  _panzoom_touch(int _action,float _x,float _y) throws Exception{
 //BA.debugLineNum = 329;BA.debugLine="Sub panZoom_Touch (Action As Int, X As Float, Y As";
 //BA.debugLineNum = 330;BA.debugLine="panZoom.Visible = False";
mostCurrent._vvvvvvvvvvvvvvvvvvv1.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 331;BA.debugLine="End Sub";
return "";
}
public static String  _process_globals() throws Exception{
 //BA.debugLineNum = 6;BA.debugLine="Sub Process_Globals";
 //BA.debugLineNum = 9;BA.debugLine="End Sub";
return "";
}
public static int  _recneshan_getitemcount() throws Exception{
 //BA.debugLineNum = 185;BA.debugLine="Sub recNeshan_GetItemCount As Int";
 //BA.debugLineNum = 186;BA.debugLine="Return list_date.Size";
if (true) return mostCurrent._list_date.getSize();
 //BA.debugLineNum = 187;BA.debugLine="End Sub";
return 0;
}
public static String  _recneshan_onbindviewholder(anywheresoftware.b4a.objects.PanelWrapper _parent,int _position) throws Exception{
anywheresoftware.b4a.objects.PanelWrapper _panel = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_tarikh = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_title = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_matn = null;
anywheresoftware.b4a.objects.ImageViewWrapper _lab_image = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_line = null;
anywheresoftware.b4a.objects.PanelWrapper _pan_play = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_play = null;
anywheresoftware.b4a.objects.StringUtils _su1 = null;
String _dfg = "";
String _textfarsi = "";
anywheresoftware.b4a.objects.StringUtils _su = null;
anywheresoftware.b4a.objects.drawable.ColorDrawable _drlabvanet = null;
 //BA.debugLineNum = 189;BA.debugLine="Sub recNeshan_onBindViewHolder (Parent As Panel,Po";
 //BA.debugLineNum = 191;BA.debugLine="Dim Panel As Panel = Parent.GetView(0)";
_panel = new anywheresoftware.b4a.objects.PanelWrapper();
_panel = (anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(_parent.GetView((int) (0)).getObject()));
 //BA.debugLineNum = 192;BA.debugLine="Dim lab_tarikh As Label=Panel.GetView(0)";
_lab_tarikh = new anywheresoftware.b4a.objects.LabelWrapper();
_lab_tarikh = (anywheresoftware.b4a.objects.LabelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.LabelWrapper(), (android.widget.TextView)(_panel.GetView((int) (0)).getObject()));
 //BA.debugLineNum = 193;BA.debugLine="Dim lab_title As Label=Panel.GetView(1)";
_lab_title = new anywheresoftware.b4a.objects.LabelWrapper();
_lab_title = (anywheresoftware.b4a.objects.LabelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.LabelWrapper(), (android.widget.TextView)(_panel.GetView((int) (1)).getObject()));
 //BA.debugLineNum = 194;BA.debugLine="Dim lab_matn As Label=Panel.GetView(3)";
_lab_matn = new anywheresoftware.b4a.objects.LabelWrapper();
_lab_matn = (anywheresoftware.b4a.objects.LabelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.LabelWrapper(), (android.widget.TextView)(_panel.GetView((int) (3)).getObject()));
 //BA.debugLineNum = 195;BA.debugLine="Dim lab_image As ImageView=Panel.GetView(2)";
_lab_image = new anywheresoftware.b4a.objects.ImageViewWrapper();
_lab_image = (anywheresoftware.b4a.objects.ImageViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ImageViewWrapper(), (android.widget.ImageView)(_panel.GetView((int) (2)).getObject()));
 //BA.debugLineNum = 196;BA.debugLine="Dim lab_line As Label=Panel.GetView(4)";
_lab_line = new anywheresoftware.b4a.objects.LabelWrapper();
_lab_line = (anywheresoftware.b4a.objects.LabelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.LabelWrapper(), (android.widget.TextView)(_panel.GetView((int) (4)).getObject()));
 //BA.debugLineNum = 197;BA.debugLine="Dim pan_play As Panel=Panel.GetView(5)";
_pan_play = new anywheresoftware.b4a.objects.PanelWrapper();
_pan_play = (anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(_panel.GetView((int) (5)).getObject()));
 //BA.debugLineNum = 198;BA.debugLine="Dim lab_play As Label=Panel.GetView(6)";
_lab_play = new anywheresoftware.b4a.objects.LabelWrapper();
_lab_play = (anywheresoftware.b4a.objects.LabelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.LabelWrapper(), (android.widget.TextView)(_panel.GetView((int) (6)).getObject()));
 //BA.debugLineNum = 200;BA.debugLine="Panel.Tag = Position";
_panel.setTag((Object)(_position));
 //BA.debugLineNum = 201;BA.debugLine="Panel.Elevation=3dip";
_panel.setElevation((float) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (3))));
 //BA.debugLineNum = 203;BA.debugLine="func.SetRipple(Panel,Colors.White,0xaaeeeeee,10di";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv3 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_panel.getObject())),anywheresoftware.b4a.keywords.Common.Colors.White,((int)0xaaeeeeee),(float) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))));
 //BA.debugLineNum = 205;BA.debugLine="lab_tarikh.Text = list_date.Get(Position)";
_lab_tarikh.setText(BA.ObjectToCharSequence(mostCurrent._list_date.Get(_position)));
 //BA.debugLineNum = 206;BA.debugLine="lab_tarikh.Typeface=Typeface.CreateNew( Typeface.";
_lab_tarikh.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.CreateNew(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.Typeface.STYLE_BOLD));
 //BA.debugLineNum = 207;BA.debugLine="func.MinimomFontLabel(lab_tarikh,14)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvv3 /*String*/ (mostCurrent.activityBA,_lab_tarikh,(int) (14));
 //BA.debugLineNum = 208;BA.debugLine="lab_tarikh.TextColor=Colors.Gray";
_lab_tarikh.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Gray);
 //BA.debugLineNum = 209;BA.debugLine="lab_tarikh.Gravity=Bit.Or(Gravity.CENTER,Gravity.";
_lab_tarikh.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 211;BA.debugLine="lab_title.Text = list_title.Get(Position)";
_lab_title.setText(BA.ObjectToCharSequence(mostCurrent._list_title.Get(_position)));
 //BA.debugLineNum = 212;BA.debugLine="lab_title.Typeface=Typeface.CreateNew( Typeface.L";
_lab_title.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.CreateNew(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.Typeface.STYLE_BOLD));
 //BA.debugLineNum = 213;BA.debugLine="lab_title.TextSize=15";
_lab_title.setTextSize((float) (15));
 //BA.debugLineNum = 214;BA.debugLine="lab_title.TextColor=Colors.Black";
_lab_title.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Black);
 //BA.debugLineNum = 215;BA.debugLine="lab_title.Gravity=Bit.Or(Gravity.RIGHT,Gravity.CE";
_lab_title.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.RIGHT,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 216;BA.debugLine="lab_title.Padding = Array As Int (0dip, 0dip, 10d";
_lab_title.setPadding(new int[]{anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (0)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (0)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (0))});
 //BA.debugLineNum = 218;BA.debugLine="Dim su1 As StringUtils";
_su1 = new anywheresoftware.b4a.objects.StringUtils();
 //BA.debugLineNum = 219;BA.debugLine="lab_title.Height=su1.MeasureMultilineTextHeight(l";
_lab_title.setHeight(_su1.MeasureMultilineTextHeight((android.widget.TextView)(_lab_title.getObject()),BA.ObjectToCharSequence(_lab_title.getText())));
 //BA.debugLineNum = 222;BA.debugLine="Dim dfg As String = list_pic.Get(Position)";
_dfg = BA.ObjectToString(mostCurrent._list_pic.Get(_position));
 //BA.debugLineNum = 224;BA.debugLine="lab_image.Top = lab_title.Top+lab_title.Height+15";
_lab_image.setTop((int) (_lab_title.getTop()+_lab_title.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (15))));
 //BA.debugLineNum = 225;BA.debugLine="pan_play.Top = lab_image.Top";
_pan_play.setTop(_lab_image.getTop());
 //BA.debugLineNum = 226;BA.debugLine="lab_play.Top = lab_image.Top";
_lab_play.setTop(_lab_image.getTop());
 //BA.debugLineNum = 228;BA.debugLine="lab_play.Text = Chr(0xf144)";
_lab_play.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xf144))));
 //BA.debugLineNum = 229;BA.debugLine="lab_play.Typeface=Typeface.LoadFromAssets(\"fontic";
_lab_play.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets("fonticon.otf"));
 //BA.debugLineNum = 230;BA.debugLine="lab_play.TextSize=35";
_lab_play.setTextSize((float) (35));
 //BA.debugLineNum = 231;BA.debugLine="lab_play.TextColor=Colors.Black";
_lab_play.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Black);
 //BA.debugLineNum = 232;BA.debugLine="lab_play.Gravity=Bit.Or(Gravity.CENTER,Gravity.CE";
_lab_play.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 235;BA.debugLine="func.color_border(pan_play,0xaaeeeeee,10dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_pan_play.getObject())),((int)0xaaeeeeee),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 //BA.debugLineNum = 237;BA.debugLine="If 1 = list_type.Get(Position) Then";
if (1==(double)(BA.ObjectToNumber(mostCurrent._list_type.Get(_position)))) { 
 //BA.debugLineNum = 239;BA.debugLine="pan_play.Visible = False";
_pan_play.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 240;BA.debugLine="lab_play.Visible = False";
_lab_play.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 242;BA.debugLine="If dfg.Length = 0 Or dfg=Null Or dfg.ToLowerCase";
if (_dfg.length()==0 || _dfg== null || (_dfg.toLowerCase(anywheresoftware.b4a.keywords.Common.stringLocale)).equals("null")) { 
 //BA.debugLineNum = 243;BA.debugLine="lab_matn.Top = lab_title.Top+lab_title.Height+1";
_lab_matn.setTop((int) (_lab_title.getTop()+_lab_title.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))));
 //BA.debugLineNum = 244;BA.debugLine="lab_image.Visible = False";
_lab_image.setVisible(anywheresoftware.b4a.keywords.Common.False);
 }else {
 //BA.debugLineNum = 248;BA.debugLine="lab_image.Gravity=Gravity.FILL";
_lab_image.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 250;BA.debugLine="glide.With(\"glide\").asBitmap.diskCacheStrategy(";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.With("glide").asBitmap(processBA).diskCacheStrategy(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.CacheStrategy_AUTOMATIC).load((Object)(_dfg)).into(_lab_image);
 //BA.debugLineNum = 253;BA.debugLine="lab_matn.Top = lab_image.Top+lab_image.Height+1";
_lab_matn.setTop((int) (_lab_image.getTop()+_lab_image.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))));
 //BA.debugLineNum = 254;BA.debugLine="lab_image.Visible = True";
_lab_image.setVisible(anywheresoftware.b4a.keywords.Common.True);
 };
 }else {
 //BA.debugLineNum = 260;BA.debugLine="pan_play.Visible = True";
_pan_play.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 261;BA.debugLine="lab_play.Visible = True";
_lab_play.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 263;BA.debugLine="lab_matn.Top = lab_image.Top+lab_image.Height+10";
_lab_matn.setTop((int) (_lab_image.getTop()+_lab_image.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))));
 //BA.debugLineNum = 264;BA.debugLine="lab_image.Visible = True";
_lab_image.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 266;BA.debugLine="lab_image.Gravity=Gravity.FILL";
_lab_image.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 268;BA.debugLine="If dfg.Length = 0 Or dfg=Null Or dfg.ToLowerCase";
if (_dfg.length()==0 || _dfg== null || (_dfg.toLowerCase(anywheresoftware.b4a.keywords.Common.stringLocale)).equals("null")) { 
 //BA.debugLineNum = 269;BA.debugLine="lab_image.Bitmap = LoadBitmap(File.DirAssets, \"";
_lab_image.setBitmap((android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"icon_back.png").getObject()));
 }else {
 //BA.debugLineNum = 272;BA.debugLine="glide.With(\"glide\").asBitmap.diskCacheStrategy(";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.With("glide").asBitmap(processBA).diskCacheStrategy(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.CacheStrategy_AUTOMATIC).load((Object)(_dfg)).into(_lab_image);
 };
 };
 //BA.debugLineNum = 281;BA.debugLine="Dim textFarsi As String = list_matn.Get(Position)";
_textfarsi = BA.ObjectToString(mostCurrent._list_matn.Get(_position));
 //BA.debugLineNum = 283;BA.debugLine="lab_matn.Text =  func.setThing0(textFarsi,\"Ꞅ\")";
_lab_matn.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv0 /*anywheresoftware.b4a.agraham.richstring.RichStringBuilder.RichString*/ (mostCurrent.activityBA,_textfarsi,"Ꞅ").getObject()));
 //BA.debugLineNum = 284;BA.debugLine="lab_matn.Typeface=Typeface.LoadFromAssets(func.fo";
_lab_matn.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 285;BA.debugLine="lab_matn.TextSize=14";
_lab_matn.setTextSize((float) (14));
 //BA.debugLineNum = 286;BA.debugLine="lab_matn.TextColor=Colors.Gray";
_lab_matn.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Gray);
 //BA.debugLineNum = 287;BA.debugLine="lab_matn.Gravity=Bit.Or(Gravity.RIGHT,Gravity.CEN";
_lab_matn.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.RIGHT,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 288;BA.debugLine="lab_matn.Padding = Array As Int (0dip, 0dip, 10di";
_lab_matn.setPadding(new int[]{anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (0)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (0)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (0))});
 //BA.debugLineNum = 290;BA.debugLine="Dim su As StringUtils";
_su = new anywheresoftware.b4a.objects.StringUtils();
 //BA.debugLineNum = 291;BA.debugLine="lab_matn.Height=su.MeasureMultilineTextHeight(lab";
_lab_matn.setHeight(_su.MeasureMultilineTextHeight((android.widget.TextView)(_lab_matn.getObject()),BA.ObjectToCharSequence(_lab_matn.getText())));
 //BA.debugLineNum = 293;BA.debugLine="Dim drlabvanet As ColorDrawable";
_drlabvanet = new anywheresoftware.b4a.objects.drawable.ColorDrawable();
 //BA.debugLineNum = 294;BA.debugLine="drlabvanet.Initialize2(0xFF4C9A7B,14,0,Colors.Dar";
_drlabvanet.Initialize2(((int)0xff4c9a7b),(int) (14),(int) (0),anywheresoftware.b4a.keywords.Common.Colors.DarkGray);
 //BA.debugLineNum = 295;BA.debugLine="lab_line.Background = drlabvanet";
_lab_line.setBackground((android.graphics.drawable.Drawable)(_drlabvanet.getObject()));
 //BA.debugLineNum = 296;BA.debugLine="lab_line.Height=lab_matn.Height+lab_matn.Top+5dip";
_lab_line.setHeight((int) (_lab_matn.getHeight()+_lab_matn.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5))));
 //BA.debugLineNum = 298;BA.debugLine="Panel.Height=lab_matn.Height+lab_matn.Top+5dip";
_panel.setHeight((int) (_lab_matn.getHeight()+_lab_matn.getTop()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5))));
 //BA.debugLineNum = 299;BA.debugLine="Parent.Height=lab_matn.Top+lab_matn.Height+18dip";
_parent.setHeight((int) (_lab_matn.getTop()+_lab_matn.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (18))));
 //BA.debugLineNum = 301;BA.debugLine="End Sub";
return "";
}
public static String  _recneshan_oncreateviewholder(anywheresoftware.b4a.objects.PanelWrapper _parent,int _viewtype) throws Exception{
anywheresoftware.b4a.objects.PanelWrapper _p_grid_asli = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_tarikh = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_title = null;
anywheresoftware.b4a.objects.ImageViewWrapper _lab_image = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_matn = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_line = null;
anywheresoftware.b4a.objects.PanelWrapper _pan_play = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_play = null;
 //BA.debugLineNum = 148;BA.debugLine="Sub recNeshan_onCreateViewHolder (Parent As Panel,";
 //BA.debugLineNum = 150;BA.debugLine="Dim p_grid_asli As Panel";
_p_grid_asli = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 151;BA.debugLine="p_grid_asli.Initialize(\"pan\")";
_p_grid_asli.Initialize(mostCurrent.activityBA,"pan");
 //BA.debugLineNum = 152;BA.debugLine="Parent.AddView(p_grid_asli,5%x,10dip,90%x,105dip)";
_parent.AddView((android.view.View)(_p_grid_asli.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (5),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (90),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (105)));
 //BA.debugLineNum = 154;BA.debugLine="Dim lab_tarikh As Label";
_lab_tarikh = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 155;BA.debugLine="lab_tarikh.Initialize(\"\")";
_lab_tarikh.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 156;BA.debugLine="p_grid_asli.AddView(lab_tarikh,2%x,5dip,25%x,30di";
_p_grid_asli.AddView((android.view.View)(_lab_tarikh.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (2),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5)),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (25),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (30)));
 //BA.debugLineNum = 158;BA.debugLine="Dim lab_title As Label";
_lab_title = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 159;BA.debugLine="lab_title.Initialize(\"\")";
_lab_title.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 160;BA.debugLine="p_grid_asli.AddView(lab_title,30%x,5dip,58%x,30di";
_p_grid_asli.AddView((android.view.View)(_lab_title.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (30),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5)),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (58),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (30)));
 //BA.debugLineNum = 162;BA.debugLine="Dim lab_image As ImageView";
_lab_image = new anywheresoftware.b4a.objects.ImageViewWrapper();
 //BA.debugLineNum = 163;BA.debugLine="lab_image.Initialize(\"\")";
_lab_image.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 164;BA.debugLine="p_grid_asli.AddView(lab_image,5%x,lab_title.Top+l";
_p_grid_asli.AddView((android.view.View)(_lab_image.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (5),mostCurrent.activityBA),(int) (_lab_title.getTop()+_lab_title.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5))),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (80),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (50),mostCurrent.activityBA));
 //BA.debugLineNum = 166;BA.debugLine="Dim lab_matn As Label";
_lab_matn = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 167;BA.debugLine="lab_matn.Initialize(\"\")";
_lab_matn.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 168;BA.debugLine="p_grid_asli.AddView(lab_matn,2%x,lab_image.Top+la";
_p_grid_asli.AddView((android.view.View)(_lab_matn.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (2),mostCurrent.activityBA),(int) (_lab_image.getTop()+_lab_image.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5))),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (86),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (60)));
 //BA.debugLineNum = 170;BA.debugLine="Dim lab_line As Label";
_lab_line = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 171;BA.debugLine="lab_line.Initialize(\"\")";
_lab_line.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 172;BA.debugLine="p_grid_asli.AddView(lab_line,89%x,0dip,1%x,105dip";
_p_grid_asli.AddView((android.view.View)(_lab_line.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (89),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (0)),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (1),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (105)));
 //BA.debugLineNum = 174;BA.debugLine="Dim pan_play As Panel";
_pan_play = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 175;BA.debugLine="pan_play.Initialize(\"\")";
_pan_play.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 176;BA.debugLine="p_grid_asli.AddView(pan_play,5%x,lab_title.Top+la";
_p_grid_asli.AddView((android.view.View)(_pan_play.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (5),mostCurrent.activityBA),(int) (_lab_title.getTop()+_lab_title.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5))),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (80),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (50),mostCurrent.activityBA));
 //BA.debugLineNum = 178;BA.debugLine="Dim lab_play As Label";
_lab_play = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 179;BA.debugLine="lab_play.Initialize(\"\")";
_lab_play.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 180;BA.debugLine="p_grid_asli.AddView(lab_play,5%x,lab_title.Top+la";
_p_grid_asli.AddView((android.view.View)(_lab_play.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (5),mostCurrent.activityBA),(int) (_lab_title.getTop()+_lab_title.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5))),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (80),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (50),mostCurrent.activityBA));
 //BA.debugLineNum = 183;BA.debugLine="End Sub";
return "";
}
public static String  _ref_rec() throws Exception{
 //BA.debugLineNum = 143;BA.debugLine="Sub ref_rec";
 //BA.debugLineNum = 144;BA.debugLine="recNeshan.Adapter2.NotifyDataSetChanged";
mostCurrent._recneshan.getAdapter2().NotifyDataSetChanged();
 //BA.debugLineNum = 145;BA.debugLine="End Sub";
return "";
}
public static String  _send_onerror(String _error) throws Exception{
 //BA.debugLineNum = 137;BA.debugLine="Sub send_onError (Error As String)";
 //BA.debugLineNum = 138;BA.debugLine="Log(Error)";
anywheresoftware.b4a.keywords.Common.LogImpl("38716289",_error,0);
 //BA.debugLineNum = 139;BA.debugLine="func.ToastERROR(func.gland(3))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (3)));
 //BA.debugLineNum = 140;BA.debugLine="ProgressDialogHide";
anywheresoftware.b4a.keywords.Common.ProgressDialogHide();
 //BA.debugLineNum = 141;BA.debugLine="End Sub";
return "";
}
public static String  _send_onnext(aghajari.retrofit.Amir_ResponseBody _responsebody) throws Exception{
anywheresoftware.b4a.objects.collections.JSONParser _parser = null;
anywheresoftware.b4a.objects.collections.Map _root = null;
anywheresoftware.b4a.objects.collections.Map _response = null;
int _code = 0;
anywheresoftware.b4a.objects.collections.List _message = null;
anywheresoftware.b4a.objects.collections.Map _colmessage = null;
String _date = "";
String _image = "";
String _film = "";
String _title = "";
String _type2 = "";
String _matn = "";
 //BA.debugLineNum = 93;BA.debugLine="Sub send_onNext (ResponseBody As Amir_ResponseBody";
 //BA.debugLineNum = 95;BA.debugLine="ProgressDialogHide";
anywheresoftware.b4a.keywords.Common.ProgressDialogHide();
 //BA.debugLineNum = 97;BA.debugLine="Try";
try { //BA.debugLineNum = 99;BA.debugLine="Dim parser As JSONParser";
_parser = new anywheresoftware.b4a.objects.collections.JSONParser();
 //BA.debugLineNum = 100;BA.debugLine="parser.Initialize(ResponseBody.String)";
_parser.Initialize(_responsebody.getString());
 //BA.debugLineNum = 101;BA.debugLine="Dim root As Map = parser.NextObject";
_root = new anywheresoftware.b4a.objects.collections.Map();
_root = _parser.NextObject();
 //BA.debugLineNum = 102;BA.debugLine="Dim response As Map = root.Get(\"response\")";
_response = new anywheresoftware.b4a.objects.collections.Map();
_response = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_root.Get((Object)("response"))));
 //BA.debugLineNum = 103;BA.debugLine="Dim code As Int = response.Get(\"code\")";
_code = (int)(BA.ObjectToNumber(_response.Get((Object)("code"))));
 //BA.debugLineNum = 105;BA.debugLine="If code = 200 Then";
if (_code==200) { 
 //BA.debugLineNum = 107;BA.debugLine="Dim message As List = response.Get(\"message\")";
_message = new anywheresoftware.b4a.objects.collections.List();
_message = (anywheresoftware.b4a.objects.collections.List) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.List(), (java.util.List)(_response.Get((Object)("message"))));
 //BA.debugLineNum = 108;BA.debugLine="For Each colmessage As Map In message";
_colmessage = new anywheresoftware.b4a.objects.collections.Map();
{
final anywheresoftware.b4a.BA.IterableList group10 = _message;
final int groupLen10 = group10.getSize()
;int index10 = 0;
;
for (; index10 < groupLen10;index10++){
_colmessage = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(group10.Get(index10)));
 //BA.debugLineNum = 109;BA.debugLine="Dim date As String = colmessage.Get(\"date\")";
_date = BA.ObjectToString(_colmessage.Get((Object)("date")));
 //BA.debugLineNum = 110;BA.debugLine="Dim image As String = colmessage.Get(\"image\")";
_image = BA.ObjectToString(_colmessage.Get((Object)("image")));
 //BA.debugLineNum = 111;BA.debugLine="Dim film As String = colmessage.Get(\"film\")";
_film = BA.ObjectToString(_colmessage.Get((Object)("film")));
 //BA.debugLineNum = 112;BA.debugLine="Dim title As String = colmessage.Get(\"title\")";
_title = BA.ObjectToString(_colmessage.Get((Object)("title")));
 //BA.debugLineNum = 113;BA.debugLine="Dim Type2 As String = colmessage.Get(\"type\")";
_type2 = BA.ObjectToString(_colmessage.Get((Object)("type")));
 //BA.debugLineNum = 114;BA.debugLine="Dim matn As String = colmessage.Get(\"matn\")";
_matn = BA.ObjectToString(_colmessage.Get((Object)("matn")));
 //BA.debugLineNum = 116;BA.debugLine="list_date.Add(date)";
mostCurrent._list_date.Add((Object)(_date));
 //BA.debugLineNum = 117;BA.debugLine="list_title.Add(title)";
mostCurrent._list_title.Add((Object)(_title));
 //BA.debugLineNum = 118;BA.debugLine="list_matn.Add(matn)";
mostCurrent._list_matn.Add((Object)(_matn));
 //BA.debugLineNum = 119;BA.debugLine="list_pic.Add(image)";
mostCurrent._list_pic.Add((Object)(_image));
 //BA.debugLineNum = 120;BA.debugLine="list_type.Add(Type2)";
mostCurrent._list_type.Add((Object)(_type2));
 //BA.debugLineNum = 121;BA.debugLine="list_film.Add(film)";
mostCurrent._list_film.Add((Object)(_film));
 }
};
 //BA.debugLineNum = 125;BA.debugLine="CallSubDelayed(Me,\"ref_rec\")";
anywheresoftware.b4a.keywords.Common.CallSubDelayed(processBA,actguide.getObject(),"ref_rec");
 }else {
 //BA.debugLineNum = 128;BA.debugLine="func.ToastERROR(func.gland(3))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (3)));
 };
 } 
       catch (Exception e29) {
			processBA.setLastException(e29); //BA.debugLineNum = 132;BA.debugLine="func.ToastERROR(func.gland(3))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (3)));
 //BA.debugLineNum = 133;BA.debugLine="Log(LastException)";
anywheresoftware.b4a.keywords.Common.LogImpl("38650792",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(mostCurrent.activityBA)),0);
 };
 //BA.debugLineNum = 136;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1() throws Exception{
anywheresoftware.b4a.objects.collections.Map _params = null;
anywheresoftware.b4a.objects.collections.Map _params1 = null;
 //BA.debugLineNum = 75;BA.debugLine="Sub tsetUpdate";
 //BA.debugLineNum = 77;BA.debugLine="ProgressDialogShow2(func.gland(2),False)";
anywheresoftware.b4a.keywords.Common.ProgressDialogShow2(mostCurrent.activityBA,BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (2))),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 79;BA.debugLine="Dim params As Map";
_params = new anywheresoftware.b4a.objects.collections.Map();
 //BA.debugLineNum = 80;BA.debugLine="Dim params1 As Map";
_params1 = new anywheresoftware.b4a.objects.collections.Map();
 //BA.debugLineNum = 81;BA.debugLine="params.Initialize";
_params.Initialize();
 //BA.debugLineNum = 82;BA.debugLine="params1.Initialize";
_params1.Initialize();
 //BA.debugLineNum = 84;BA.debugLine="params.Put(\"id2\", 1)";
_params.Put((Object)("id2"),(Object)(1));
 //BA.debugLineNum = 86;BA.debugLine="params1.Put(\"request_params\",params)";
_params1.Put((Object)("request_params"),(Object)(_params.getObject()));
 //BA.debugLineNum = 87;BA.debugLine="Retrofit.Json(\"send\",urls.guide,Retrofit.toJson(p";
mostCurrent._vvvvvvvvvvvvvv4.Json("send",mostCurrent._vvvvvvvvvvvvvvvvv5._vvvvvvvvvv4 /*String*/ (mostCurrent.activityBA),mostCurrent._vvvvvvvvvvvvvv4.toJson((Object)(_params1.getObject())));
 //BA.debugLineNum = 90;BA.debugLine="End Sub";
return "";
}
}
